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);