Files
whyrating-engine-legacy/web/next.config.ts
2026-02-02 18:19:00 +00:00

9 lines
219 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// API routes are handled by Next.js in app/api/
// They internally call the Python backend at localhost:8000
};
export default nextConfig;