如何在wepy中使用stylus

如何在wepy中使用stylus

第一步,安装wepy-compiler-stylus(以及stylus, stylus-loader)

npm install wepy-compiler-stylus --save-dev 

第二步,配置根目录下的wepy.config.js

# wepy.config.js
module.export = {  
  // ...其他配置  
  compilers: {  
    // ...其他配置  
    // 添加以下内容  
    stylus: {  
      compress: true  
    }  
  }  
}  

第三步,修改.wpy文件中的style标签中的lang属性

# 现在就可以使用了