加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
next.config.js 763 Bytes
一键复制 编辑 原始数据 按行查看 历史
Evan 提交于 2024-04-10 16:59 . :hammer:修复网关问题.
/** @type {import('next').NextConfig} */
const nextConfig = {
/*代理方式(1)*/
async rewrites() {
return {
fallback: [
//道理接口请求
/*
生产环境(Prod):http://120.53.87.9:9091 (代理:https://server.jfkj.xyz)
开发环境(Dev):http://127.0.0.1:9091 (代理:https://localhost)
*/
{source: '/:path*', destination: `https://server.jfkj.xyz/:path*`},
]
}
},
/*打包方式*/
//output: 'standalone',
/*构建ID*/
generateBuildId: async () => {
return (process.env.VERSION || Date.now() + Math.round(Math.random() * 2441139)).toString()
},
}
module.exports = nextConfig
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化