| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| async rewrites() { | |
| return [ | |
| { | |
| source: "/backend/:path*", | |
| destination: "http://134.199.203.136:8080/:path*", | |
| }, | |
| ]; | |
| }, | |
| }; | |
| export default nextConfig; | |
| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| async rewrites() { | |
| return [ | |
| { | |
| source: "/backend/:path*", | |
| destination: "http://134.199.203.136:8080/:path*", | |
| }, | |
| ]; | |
| }, | |
| }; | |
| export default nextConfig; | |