/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: false, async rewrites() { return [ { source: '/api/:path*', destination: process.env.NEXT_PUBLIC_BACKEND_API + ':path*', }, ] }, } module.exports = nextConfig