mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-11 05:49:22 +00:00
refactor: Add frontend code to DB-GPT (#912)
This commit is contained in:
17
web/next.config.js
Normal file
17
web/next.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/** @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;
|
Reference in New Issue
Block a user