mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 15:49:34 +05:00
12 lines
332 B
TypeScript
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);
|