code-crawler / frontend /next.config.ts
Asish Karthikeya Gogineni
feat: Add Next.js frontend with Framer Motion animations
7a7972b
raw
history blame contribute delete
368 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// API rewrites to proxy to FastAPI backend
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:8000/api/:path*',
},
];
},
// Image optimization
images: {
remotePatterns: [],
},
};
export default nextConfig;