joschan21/quill

uploading on vercel

Closed this issue · 2 comments

I encountered the problem of "ERR_PNPM_OUTDATED_LOCKFILE  Cannot install with "frozen-lockfile" because pnpm-lock.yaml is not up to date with package.json"

Follow these steps : @ejemi1989

  1. Update pnpm:
    Make sure you have the latest pnpm version installed globally.

    pnpm install -g pnpm@latest
  2. Delete Files:
    Remove the existing pnpm-lock.yaml file and the node_modules folder.

    rm pnpm-lock.yaml
    rm -rf node_modules
  3. Install Packages Again:

    pnpm install

    This will generate a new lockfile and install packages.

For other code related issues you can check Here 👍

Thanks for helping! :)