19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
const nextConfig = {
|
|
output: "export",
|
|
basePath: "",
|
|
assetPrefix: "/litellm-asset-prefix",
|
|
turbopack: {
|
|
// Must be absolute; "." is no longer allowed
|
|
root: __dirname,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|