Files
recipe-app/frontend/next.config.js
T
2026-04-16 19:10:06 +02:00

15 lines
265 B
JavaScript

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