mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
Store search tool allowlists only on object permissions, wire auth/management/UI flows to object_permission.search_tools, and remove legacy team-metadata search credential code and tests. Made-with: Cursor
23 lines
608 B
JavaScript
23 lines
608 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",
|
|
// Required with output: "export" — default image optimizer runs only in server mode.
|
|
// See https://nextjs.org/docs/messages/export-image-api
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
basePath: "",
|
|
assetPrefix: "/litellm-asset-prefix",
|
|
turbopack: {
|
|
// Must be absolute; "." is no longer allowed
|
|
root: __dirname,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|