import createNextIntlPlugin from "next-intl/plugin" const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts") /** @type {import('next').NextConfig} */ const nextConfig = { // See https://lucide.dev/guide/packages/lucide-react#nextjs-example transpilePackages: ["lucide-react"], // Required for Docker standalone output output: "standalone", // Proxy API calls to the Spring Boot backend async rewrites() { return [ { source: "/api/backend/:path*", destination: `${process.env.BACKEND_URL || "http://localhost:8080"}/api/v1/:path*`, }, ] }, } export default withNextIntl(nextConfig)