From 2e1d0e94ef14a23f291ac74807fa16075000506a Mon Sep 17 00:00:00 2001 From: Johan Aantjes <47614276+TargetCrafter@users.noreply.github.com> Date: Mon, 2 Mar 2026 21:12:46 +0100 Subject: [PATCH] Update Dockerfile to include TypeScript config Added TypeScript configuration and updated Vite config file. --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58f9f058..944fa4dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,11 @@ RUN npm ci # Copy source code COPY ./src ./src COPY ./public ./public -COPY vite.config.js . +COPY tsconfig.json . +COPY vite.config.ts . # Build the application +ENV NETLIFY=true RUN npm run build # Production stage