BrowserslistError: Unknown browser major

后端 未结 9 1680
南旧
南旧 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:38

    For those still having problems:

    Manually remove the url to bootsrap CSS from angular-cli.json

      "styles":
      [
        **"../node_modules/bootstrap/dist/css/bootstrap.min.css",**
        "../node_modules/font-awesome/css/font-awesome.min.css",    
        "styles.css"
      ]
    

提交回复
热议问题