/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', async rewrites() { return [ { source: '/images/:filename', destination: '/api/images/:filename', }, ]; }, }; module.exports = nextConfig;