mirror of
https://github.com/jakobkordez/ham-reserve.git
synced 2025-05-31 08:49:06 +00:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
rewrites: async () => [{
|
|
source: '/api/:path*',
|
|
destination: 'http://localhost:3001/:path*' // Proxy to Backend
|
|
}]
|
|
}
|
|
|
|
module.exports = nextConfig
|