TestLLM / ui /litellm-dashboard /next.config.mjs
Raju2024's picture
Upload 1072 files
e3278e4 verified
raw
history blame contribute delete
236 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: process.env.UI_BASE_PATH || '/ui',
};
nextConfig.experimental = {
missingSuspenseWithCSRBailout: false
}
export default nextConfig;