fix: configure docker compose and fastify cors with .env file for local and production environment

This commit is contained in:
theoleuthardt 2025-02-24 13:39:07 +01:00
parent 4943846db7
commit d75f0c4626
5 changed files with 23 additions and 13 deletions

View file

@ -14,7 +14,7 @@ import { removeBG } from "./src/routes/removebg.route";
const app = Fastify({ logger: true });
app.register(cors, {
origin: "*",
origin: process.env.CORS_ALLOWED_ORIGIN || "*",
exposedHeaders: "Content-Disposition",
methods: "POST",
allowedHeaders: "Content-Type",