litellm/ui/litellm-dashboard/next.config.mjs
2024-02-10 08:43:41 -08:00

11 lines
208 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: '/ui',
};
nextConfig.experimental = {
missingSuspenseWithCSRBailout: false
}
export default nextConfig;