write-ups-challenges-2024-2025/photos/frontend/next.config.ts

15 lines
281 B
TypeScript
Raw Normal View History

2024-11-25 21:32:02 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
rewrites: async () => [
{
source: "/api/:path*",
destination: "http://localhost:8000/:path*",
},
],
output: "standalone",
};
export default nextConfig;