由于引导程序无法运行ng服务?

时间:2018-02-12 14:09:33

标签: angular webpack angular-bootstrap

我对Angular有一个奇怪的问题,我的研究都没有用。

我对此非常陌生并开始了一个小项目,我在其中添加了bootstrap到我的Angular项目。我遵循了一个程序(this one),它运作良好!

但是今天我尝试运行npm serve命令并出现以下错误:Terminal Error img

我真的没有得到错误,但发现agular-cli.json文件可能是关键,所以这里是重要的部分。

  "index": "index.html",
      "main": "main.ts",
      "polyfills": "polyfills.ts",
      "test": "test.ts",
      "tsconfig": "tsconfig.app.json",
      "testTsconfig": "tsconfig.spec.json",
      "prefix": "app",
      "styles": [
        "./node_modules/bootstrap/dist/css/bootstrap.min.css",
        "styles.css"

我尝试将styles.css替换为src/styles.css但不起作用。

最糟糕的是,它在2或3天前工作,我没有做任何事......

1 个答案:

答案 0 :(得分:0)

你的bootstrap样式路径是错误的。您的styles条目应为:

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