Files
IMTIM-Portal/frontend/next.config.ts
T

14 lines
244 B
TypeScript
Raw Normal View History

2026-04-17 16:27:18 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:3001/api/:path*',
},
];
},
};
export default nextConfig;