diff --git a/Dockerfile b/Dockerfile index 37dad8b..05e9743 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,6 @@ COPY prisma ./prisma/ COPY public ./public RUN npx prisma generate -RUN npm run migrate:prod RUN npm run build && \ npm prune --production && \ diff --git a/next.config.js b/next.config.js index 7e33dfa..07d8e03 100644 --- a/next.config.js +++ b/next.config.js @@ -14,6 +14,9 @@ const config = { } return config }, + typescript: { + ignoreBuildErrors: true, + }, } export default config diff --git a/package.json b/package.json index 8000fab..33f405a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pgt-web-app", - "version": "0.1.89", + "version": "0.1.90", "private": true, "type": "module", "scripts": { @@ -20,8 +20,7 @@ "lint:types": "tsc --noEmit", "migrate:proposal-data": "npx tsx src/scripts/migrateProposalData.ts", "lint:all": "npm run lint:full && npm run lint:types", - "admin:status": "npx tsx src/scripts/toggle-admin-status.ts", - "migrate:prod": "npx prisma migrate deploy && npm run migrate:proposal-data" + "admin:status": "npx tsx src/scripts/toggle-admin-status.ts" }, "dependencies": { "@ladjs/graceful": "^4.1.0",