Spaces:
Configuration error
Configuration error
File size: 326 Bytes
447ebeb |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: '',
assetPrefix: '/litellm-asset-prefix', // If a server_root_path is set, this will be overridden by runtime injection
};
nextConfig.experimental = {
missingSuspenseWithCSRBailout: false
}
export default nextConfig;
|