gpt4 book ai didi

javascript - 如何以正确的方式配置 next.config.js 文件

转载 作者:行者123 更新时间:2023-11-30 19:31:58 25 4
gpt4 key购买 nike

在我的 next.config.js 中,我有以下配置:

const withCSS = require('@zeit/next-css');
const withSass = require('@zeit/next-sass');
const withImages = require('next-images');
const withFonts = require('next-fonts');

module.exports = withCSS(
withSass(
withFonts(), // <=== this is wrong?
withImages({
distDir: '../_next',
webpack(config) {
return config;
}
})
)
);

我需要在这里添加的最后一件事是 next-fonts 插件。

我不确定如何以正确的方式导出 withFounts

我需要 next-fonts 插件才能使用 'fonts' 图标

最佳答案

你可以这样做:

module.exports = withCSS(withFonts(withSass(
withImages({
distDir: '../_next',
webpack(config) {
return config;
}
})
)))

你可以尝试使用next-compose

关于javascript - 如何以正确的方式配置 next.config.js 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56341248/

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