Files
tonePage/tone-page-web/next.config.ts
2025-05-10 19:13:50 +08:00

20 lines
357 B
TypeScript

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