InstantCoder / next.config.mjs
Ileana
Init
821dd89
Raw
History Blame Contribute Delete
270 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
async rewrites() {
return [
{
source: '/v1/:path*',
destination: 'http://127.0.0.1:8080/v1/:path*',
},
]
},
};
export default nextConfig;