/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, images: { domains: ["lh3.googleusercontent.com"], }, trailingSlash: true, async rewrites() { return [ { source: "/api/:path*", destination: `${process.env.NEXT_PUBLIC_API_ENDPOINT}/api/:path*`, }, ]; }, }; module.exports = nextConfig;