当前位置: 首页 > 工具软件 > css.js > 使用案例 >

postcss.config.js

邢寒
2023-12-01

postcss.config.js 作用&配置

  • 给postcss用的
  • postcss 是帮我们后处理css ,css已经编译完成了,在stylus-loader编译成css之后,在通过postcss优化css,通过一系列组件去优化,比如以下,通过autoprefixer 添加css前缀
module.exports = {
  plugins: {
    autoprefixer: {}
  }
}

 

 类似资料:

相关阅读

相关文章

相关问答