笔记:使用 stylus stylus-loader
安装 stylus Stylus-loader
cnpm i stylus stylus-loader --save
配置 webpack.config.js 加入 styl-loader
module: {
rules: [
{
test: /.vue$/,
loader: 'vue-loader'
},
{
test: /.css$/,
use: [
'style-loader',
'css-loader'
]
},
{
test: /.styl/,
use: [
'style-loader',
'css-loader',
'stylus-loader'
]
},
{
test: /.(gif|jpg|jpeg|png|svg|)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 1024,
name: '[name]-aaa.[ext]'
}
}
]
}
]
}
编辑 stylus 文件
新建一个 test-stylus.styl
body
font-size 20px
导入到 index.js 中
import './assets/styles/test-stylus.styl'
打包
cnpm run build