joschan21 / quill

Quill - A Modern SaaS-Platform Built With Next.js 13
1.91k stars 513 forks source link

uploading on vercel #15

Closed ejemi1989 closed 1 year ago

ejemi1989 commented 1 year ago

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"

anand-mukul commented 1 year ago

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 👍

joschan21 commented 1 year ago

Thanks for helping! :)