mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
12 lines
319 B
JavaScript
12 lines
319 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;
|