/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, rewrites: async () => ({ fallback: [ { source: "/:path*", destination: "/api/proxy/:path*", }, ], }), }; module.exports = nextConfig;