筆記:使用 stylus stylus-loader
安裝 stylus Stylus-loader
cnpm i stylus stylus-loader --savecss
配置 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.stylvue
body font-size 20px
導入到 index.js 中
import './assets/styles/test-stylus.styl'webpack
打包
cnpm run buildweb