加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
next.config.js 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
单点科技 提交于 2023-05-26 17:55 . 初始化代码
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path')
/** @type {import('next').NextConfig} */
// Remove this if you're not using Fullcalendar features
const withTM = require('next-transpile-modules')([
'@fullcalendar/common',
'@fullcalendar/react',
'@fullcalendar/daygrid',
'@fullcalendar/list',
'@fullcalendar/timegrid'
])
module.exports = withTM({
trailingSlash: true,
reactStrictMode: false,
experimental: {
esmExternals: false
},
webpack: config => {
config.resolve.alias = {
...config.resolve.alias,
apexcharts: path.resolve(__dirname, './node_modules/apexcharts-clevision')
}
return config
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化