Files
DB-GPT/datacenter/next.config.js
2023-07-04 20:09:38 +08:00

17 lines
277 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
experimental: {
esmExternals: 'loose'
},
typescript: {
ignoreBuildErrors: true
},
env: {
API_BASE_URL: process.env.API_BASE_URL'
},
trailingSlash: true
}
module.exports = nextConfig