stylus

安装

1
2
$ npm install --D stylus
$ npm install --D stylus-loader

配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
var config = {
module: {
rules: [
{
test: /\.styl$/,
use: [
'style-loader',
'css-loader',
'stylus-loader'
]
}
]
}
}

参考

  1. stylus 官网

  2. CSS 转 Stylus、Less、Sass