mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-10 05:19:44 +00:00
18 lines
329 B
JavaScript
18 lines
329 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,
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
module.exports = nextConfig;
|