next.config.ts 314 B

123456789101112131415
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. /* config options here */
  4. async rewrites() {
  5. return [
  6. {
  7. source: '/api/:path*',
  8. destination: 'http://localhost:8000/api/:path*', // 代理到后端API服务器
  9. },
  10. ]
  11. },
  12. };
  13. export default nextConfig;