1

<!--

  • @Author: starkwang
  • @Contact me: https://shudong.wang/about
  • @Date: 2019-10-21 18:33:27
  • @LastEditors: starkwang
  • @LastEditTime: 2019-10-21 18:36:01
  • @Description: 【nextjs教程】多插件配置,使用 next-compose-plugins实现

-->

本文首发:https://shudong.wang/10606.html

使用 next-compose-plugins 实现多插件配置

const withPlugins = require('next-compose-plugins');

配置规则

module.exports = withPlugins(
  [
    [
      stylus,{插件一}
    ],
    [
      css,{插件二}
    ]
  ],
  nextConfig
);

案例

const nextConfig = {}
module.exports = withPlugins(
  [
    [
      stylus,
      {
        cssModules: true,
        cssLoaderOptions: {
          importLoaders: 1,
          localIdentName
        }
      }
    ],
    [
      css,
      {
        cssModules: true,
        cssLoaderOptions: {
          localIdentName
        }
      }
    ]
  ],
  nextConfig
);

西树先森
7.1k 声望926 粉丝

从事开发多年,前端、后端(go、Python、php)、服务架构都有涉猎,经历过大公司、创业公司,擅长前端及公司技术选型。