当我将CSS导入Angular组件时,如下所示:
@Component({
selector: 'hello-angular',
styleUrls: ["./app.component.css"],
template: `<h1>Hello {{name}}</h1>`
})
rails返回错误
GET http://localhost:3000/app.component.css 406(不可接受)
但是当我向这样的组件添加样式时:
@Component({
selector: 'hello-angular',
styles: [`
h1 {
color: red;
}
`],
template: `<h1>Hello {{name}}</h1>`
})
一切都很好。
是否可以使用rails webpacker导入外部组件CSS?