복붙노트

[ANGULAR] 부트 스트랩은 Angular 6에 연결하지 않습니까?

ANGULAR

부트 스트랩은 Angular 6에 연결하지 않습니까?

해결법


  1. 1.Angular 6에서는 아래와 같이해야합니다.

    Angular 6에서는 아래와 같이해야합니다.

    npm install --save bootstrap
    

    그런 다음 src / style.css 파일에만 추가 :

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

    Angular 6에서는 Angular.json 파일에 스크립트를 추가 할 필요가 없습니다.

  2. from https://stackoverflow.com/questions/50559810/bootstrap-not-connect-to-the-angular-6 by cc-by-sa and MIT license