ai-hackaton-frontend/next.config.js
2025-08-31 00:27:33 +05:00

13 lines
248 B
JavaScript

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