Files
AiTool/frontend/next.config.mjs
丹尼尔 ad96272ab6 fix:bug
2026-03-12 19:35:06 +08:00

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;