mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-01-24 22:34:05 +00:00
17 lines
276 B
JavaScript
17 lines
276 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
|