Spaces:
Paused
Paused
File size: 270 Bytes
821dd89 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /** @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;
|