mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-28 21:12:13 +00:00
12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
esmExternals: 'loose'
|
|
},
|
|
images: {
|
|
unoptimized: true
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|