import type { NextConfig } from "next"; const nextConfig: NextConfig = { experimental: { externalDir: true, }, async rewrites() { return { beforeFiles: [ { source: "/api/:path*", destination: "http://backend:8080/api/:path*", }, ], }; }, }; export default nextConfig;