11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// Proxy API to FastAPI in dev if needed (optional; frontend can call API_BASE directly)
|
|
async rewrites() {
|
|
return [];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|