| 123456789101112131415 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- async rewrites() {
- const apiOrigin = process.env.INTERNAL_API_BASE_URL?.replace(/\/$/, "") ?? "http://127.0.0.1:3001";
- return [
- {
- source: "/api/:path*",
- destination: `${apiOrigin}/api/:path*`,
- },
- ];
- },
- };
- export default nextConfig;
|