任何人都可以帮助我使用webpack配置添加样式>我在很多地方搜索过,但没有得到正确答案。
我需要使用sass loading。
我是angular2和webpack的新手
请帮帮我?
答案 0 :(得分:0)
styles: [require('pathToCss/function.component.scss')]
另外,在vendor.ts中:
import './assets/css/style.scss';
答案 1 :(得分:0)
您只能使用样式,并且需要使用带有webpack styles:[require ('yourStyleSheet')]
注意: - 由于问题,您必须在所需的样式上使用toString
styles: [require("./app.styles.css").toString()]
Here is my github repo which use the same 注意: - 如果您已经使用了必需的,则不需要将其作为提及的其他答案导入,因为webpack会为您捆绑它。