在.angular-cli.json

时间:2017-04-22 17:02:11

标签: angular visual-studio-code

在Angular项目中(使用vs代码作为编辑器) - 我尝试安装bootstrap并使用

的引用
  在" style"中的.angular-cli.json文件中的

bootstrap.min.cs文件   部分..." EX:node_modules \ bootstrap \ dist \ css \ bootstrap.min.cs"

我确实在项目目录中看到了一个node_module文件夹,它也有bootstrap.min.cs文件。

当我编译项目时 - 我得到以下错误。

Failed to compile.

multi ./~/bootstrap/dist/css/bootstrap.min.cs ./src/styles.css
Module not found: Error: Can't resolve 'C:\<porject path>\node_modules\bootstrap\dist\css\bootstrap.min.cs' in 'C:\<project path>'
 @ multi ./~/bootstrap/dist/css/bootstrap.min.cs ./src/styles.css

任何线索?请告知我缺少的东西?

如果我从.angular-cli.json文件中删除了引导程序引用...应用程序运行顺畅。

1 个答案:

答案 0 :(得分:0)

使用angular-cli

添加bootstrap
"styles": [
  "styles.css",
  "../node_modules/bootstrap/dist/css/bootstrap.min.css"
],