如何添加 postcss 插件?

可在 nuxt.config.js 文件增加以下配置来添加 postcss 插件:

  1. export default {
  2. build: {
  3. postcss: {
  4. // 添加插件名称作为键,参数作为值
  5. // 使用npm或yarn安装它们
  6. plugins: {
  7. // 通过传递 false 来禁用插件
  8. 'postcss-url': false,
  9. 'postcss-nested': {},
  10. 'postcss-responsive-type': {},
  11. 'postcss-hexrgba': {}
  12. },
  13. preset: {
  14. // 更改postcss-preset-env 设置
  15. autoprefixer: {
  16. grid: true
  17. }
  18. }
  19. }
  20. }
  21. }