/** @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, async rewrites() { return [ { source: '/uploads/:path*', destination: `${process.env.ENGINE_URL || 'http://127.0.0.1:3040'}/uploads/:path*`, }, ]; }, };