tina
tina copied to clipboard
有比较好的支持sass的方案吗?
// webpack.config.js
{
test: /\.(css|wxss|scss)$/,
exclude: /node_modules/,
use: [
loaders.style,
{
loader:'sass-loader',
options: {
sourceMap: true
}
}
],
},