Files
tonePage/tone-page-web/next.config.ts
2025-05-10 12:08:04 +08:00

16 lines
278 B
TypeScript

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