forked from phoenix/litellm-mirror
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
basePath: '/ui',
|
|
};
|
|
|
|
nextConfig.experimental = {
|
|
missingSuspenseWithCSRBailout: false
|
|
}
|
|
|
|
export default nextConfig;
|