无法编译。
错误:
./ src / app / shopping-list / shopping-edit / shopping-edit.component.css 模块错误(来自./node_modules/postcss-loader/src/index.js): (使用值代替Error的实例)CssSyntaxError: D:\ demoApp \ src \ app \ shopping-list \ shopping-edit \ shopping-edit.component.css:98:26: 无法解析“ assets / header.png” 'D:\ demoApp \ src \ app \ shopping-list \ shopping-edit'
代码:
96 | }
97 | .section-testimonials{
> 98 | background-image:url(assets/header.png); ;
| ^
99 | }
100 |
答案 0 :(得分:1)
在该位置使用引号和正斜杠:
96 | }
97 | .section-testimonials{
> 98 | background-image:url("./assets/header.png"); ;
|
99 | }
100 |