Files
eventspace/frontend/next.config.ts
Felipe Cardoso c61ad52331
Some checks failed
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Has been skipped
Build and Push Docker Images / build-frontend (push) Failing after 42s
Refactor auto-generated schemas and types formatting
Updated the formatting for auto-generated schemas, types, and related files to adhere to consistent coding standards (e.g., double quotes, indentation). No functional changes were made, ensuring behavior remains identical.
2025-03-05 10:13:33 +01:00

17 lines
326 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
// Ensure we can connect to the backend in Docker
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://backend:8000/:path*",
},
];
},
};
export default nextConfig;