How to combine and use multiple Next.js plugins
问题 I would like to use css and scss in next.js app. I have next.config.js in my project. This configuration is for scss : // next.config.js const withSass = require('@zeit/next-sass'); module.exports = withSass({ cssModules: true, cssLoaderOptions: { importLoaders: 1, localIdentName: "[local]___[hash:base64:5]", } }) I don't know how to combine const withCSS = require('@zeit/next-css'); with my current config. I would like to use custom config for scss (from my code snipet). Can someone help me