我正在使用nextJs,并且需要增加对less和CSS的支持。我想要一个项目都具有next-css和next-less。但是它一次接受一个。这是我正在使用的
const withCSS = require('@zeit/next-css')
module.exports = withCSS({
/* config options here */
})
const withLess = require('@zeit/next-less')
module.exports = withLess({
cssModules: false,
lessLoaderOptions: {
javascriptEnabled: true
}
})
我是否正确地包括了两个装载机?而且我还需要javascriptEnabled:true。我们如何实现这种配置。
如果您能提供一两个提示,我非常感谢。
答案 0 :(得分:1)
这应该有效。
const withCSS = require('@zeit/next-css')
const withLess = require('@zeit/next-less')
module.exports = withCSS(withLess())