Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

맨땅에 코딩

Bootstrap install + Setting (최신 버전) 본문

즐거운 웹 개발/Setting

Bootstrap install + Setting (최신 버전)

맨땅 2023. 4. 10. 02:04

목차

    반응형

    공식 문서 참고!!

     

     

    Download

    Download Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more.

    getbootstrap.com

     

     

    1. 설치

     

    yarn add bootstrap@5.2.3

     yarn이 에러가 덜 난다

     

    원하는 버전 설치

     

     

    2. main.js에 추가 

     

    import 'bootstrap'
    import 'bootstrap/dist/css/bootstrap.min.css'

     

     

    3. 오류나는 경우

     

    Module not found: Error: Can't resolve '@popperjs/core' (이런 오류)

     

    npm install --save @popperjs/core 터미널에서 이거 실행

    반응형