mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-04 15:07:22 +00:00
d05eda0311
* fix(proxy_server.py): initial commit with asset prefix rewriting for custom base path Closes https://github.com/BerriAI/litellm/issues/11451 * docs(litellm_proxy.md): clarify version requirement * fix(proxy_server.py): replace litellm well known route with custom server root path Ensures UI calls correct endpoint * build(ui/): update ui build
13 lines
326 B
JavaScript
13 lines
326 B
JavaScript
/** @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;
|