gpt4 book ai didi

javascript - 在 next.config.js 中同时添加对 next-css 和 next-less 的支持

转载 作者:行者123 更新时间:2023-12-02 22:11:17 28 4
gpt4 key购买 nike

我正在使用 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 。怎么才能实现这个配置。

如果您能提供一两个提示,我真的很感激。

最佳答案

这应该有效。

const withCSS = require('@zeit/next-css')
const withLess = require('@zeit/next-less')
module.exports = withCSS(withLess())

关于javascript - 在 next.config.js 中同时添加对 next-css 和 next-less 的支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59551075/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com