Files
accountbook/frontend/next.config.js
T

14 lines
246 B
JavaScript
Raw Normal View History

2026-03-12 11:24:10 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:3501/api/:path*',
},
];
},
};
module.exports = nextConfig;