Files
All-in-one-Financial-Analysis/atlas-terminal/apps/web/next.config.mjs
T

14 lines
244 B
JavaScript
Raw Normal View History

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