Files
IMTIM-Portal/frontend/next.config.ts
T
2026-04-17 16:27:18 +08:00

14 lines
244 B
TypeScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:3001/api/:path*',
},
];
},
};
export default nextConfig;