New chat started from template EinCode Digital Lab
An error occurred during deployment. Please fix:
Running build in Washington, D.C., USA (East) – iad1
Build machine configuration: 2 cores, 8 GB
Retrieving list of deployment files...
Previous build caches not available.
Downloading 74 deployment files...
...
Installing dependencies...
ERR_PNPM_LOCKFILE_CONFIG_MISMATCH Cannot proceed with the frozen installation. The current "overrides" configuration doesn't match the value found in the lockfile
Update your lockfile using "pnpm install --no-frozen-lockfile"
Error: Command "pnpm install" exited with 1
The issue is that the pnpm-lock.yaml was generated without the pnpm.overrides configuration, so there's a mismatch. The simplest fix is to remove the pnpm.overrides section from package.json since the types are already pinned in devDependencies.
The deployment error was caused by a mismatch between the pnpm.overrides field in package.json and the lockfile. Since the @types/react and @types/react-dom versions are already pinned in devDependencies, the overrides were redundant. Removing them resolves the ERR_PNPM_LOCKFILE_CONFIG_MISMATCH error so pnpm install --frozen-lockfile can proceed successfully during deployment.
You can send messages while the preview loads