litellm/ui/litellm-dashboard/next.config.mjs
2026-01-31 17:44:03 -08:00

12 lines
359 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
turbopack: {
root: ".", // Explicitly set the project root to silence the multiple lockfiles warning
},
};
export default nextConfig;