diff --git a/backend/Dockerfile b/backend/Dockerfile index d117a8a..b1797a1 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,8 @@ FROM node:20-alpine AS builder +# Install OpenSSL for Prisma +RUN apk add --no-cache openssl + WORKDIR /app # Copy package files @@ -22,6 +25,9 @@ RUN npm run build # Production image FROM node:20-alpine +# Install OpenSSL for Prisma +RUN apk add --no-cache openssl + WORKDIR /app # Copy built files diff --git a/frontend/src/vite-env.d.ts b/frontend/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/frontend/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 6e760b2..3be8177 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -16,8 +16,8 @@ "noEmit": true, "jsx": "react-jsx", "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, "baseUrl": ".", "paths": {