YAMPD/gui/next.config.ts
2025-05-05 01:33:58 +05:00

12 lines
332 B
TypeScript

import type { NextConfig } from "next";
import withFlowbiteReact from "flowbite-react/plugin/nextjs";
const nextConfig: NextConfig = {
/* config options here */
output: "export",
publicRuntimeConfig: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || "/api",
},
};
export default withFlowbiteReact(nextConfig);