mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-11 09:05:16 +00:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
basePath: '/ui',
|
|
};
|
|
|
|
nextConfig.experimental = {
|
|
missingSuspenseWithCSRBailout: false
|
|
}
|
|
|
|
export default nextConfig;
|