Files
storycove/frontend/next.config.js
2025-07-21 10:46:11 +02:00

16 lines
288 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://backend:8080/api/:path*',
},
];
},
images: {
domains: ['localhost'],
},
};
module.exports = nextConfig;