BrowserslistError: Unknown browser major

后端 未结 9 1681
南旧
南旧 2020-12-15 07:30

I\'m trying to use bootstrap 4 with my angular installation. i\'ve run npm install --save bootstrap@next but i have a break at runtime :

./node_modules/css-l         


        
9条回答
  •  情书的邮戳
    2020-12-15 07:58

    I had the same problem with Bootstrap 4.1.1. Solution is to change Boostrap version to 4.0.0-beta.2 (without the caret) in package.json then run

    npm install 
    ng serve
    

    And also add import "~bootstrap/dist/css.bootstrap.css" in your style.css file.

提交回复
热议问题