fix(build): use new flag for experimental compile

This commit is contained in:
Nicolas Meienberger 2024-04-13 17:04:31 +02:00 committed by Nicolas Meienberger
parent 8ebc4fd9da
commit a4d1f14c96
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
"db:migrate": "NODE_ENV=development dotenv -e .env.local -- tsx ./src/server/run-migrations-dev.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"build": "next experimental-compile",
"build": "next build --experimental-build-mode compile",
"start": "NODE_ENV=production node server.js",
"start:dev-container": "./.devcontainer/filewatcher.sh && npm run start:dev",
"start:rc": "docker compose -f docker-compose.rc.yml --env-file .env up --build",

View File

@ -8,7 +8,7 @@
* - Please do NOT serve this file on production.
*/
const PACKAGE_VERSION = '2.2.9'
const PACKAGE_VERSION = '2.2.13'
const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()