<!--
- @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
);
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。