最佳答案
假设我们从以下开始: Https://github.com/angularclass/angular2-webpack-starter
在 npm install
和 npm run start
之后,一切正常。
我想添加一个外部 css 模块,例如 bootstrap 4的 css (只有 css)。(我知道 bootstrap 有一个 bootstrap-loader,但是现在我要求一个通用的解决方案,所以请考虑 bootstrap 4,因为它可能是任何其他可以通过 npm 获得的 css 模块)。
我通过 npm: npm install bootstrap@4.0.0-alpha.4 --save
安装引导程序
首先,我认为将 import 'bootstrap/dist/css/bootstrap.css';
添加到 vendor.Browser.ts 文件就足够了。
但事实并非如此。
我该怎么做才能找到一个合适的解决方案?
我没有要求的解决方案: