File size: 256 Bytes
342230a
 
 
38c50f9
 
 
 
 
 
 
 
342230a
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  async rewrites() {
    return [
      {
        source: '/api/:path*',
        destination: 'http://127.0.0.1:8000/api/:path*',
      },
    ];
  },
};

export default nextConfig;