BAD: Install broke again

Developing Vue on FreeBSD sometimes feels like a second-class. Nuxt depends on the rollup library, which for the longest time doesn't have official support for FreeBSD.

Fortunately there is a 'downgrade' path, documented here. Actual experience contains a hidden step. One needs to:

  1. Install via npx nuxi@latest init <project-name>. Select yarn when prompted. Selecting npm will fail the install.
  2. Apply the changes per the GitHub issue above (in packages.json).
  3. Delete installed modules (rm -rf node_modules)
  4. Install modules (npm i)

GOOD: Upgrade just works (mostly)

Except for this odd prompt at the end of the npm run generate step asking to install nuxt-image. Selecting the default ('yes') seems to fail the next generate call.

Otherwise the upgrade was successful!