我对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天前工作,我没有做任何事......
答案 0 :(得分:0)
你的bootstrap样式路径是错误的。您的styles
条目应为:
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
]