Files
tessera/web/next.config.ts
2026-06-07 21:56:36 +02:00

15 lines
256 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://127.0.0.1:9876/api/:path*',
},
];
},
};
export default nextConfig;