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:
- Install via
npx nuxi@latest init <project-name>
. Select yarn when prompted. Selecting npm will fail the install. - Apply the changes per the GitHub issue above (in packages.json).
- Delete installed modules (
rm -rf node_modules
) - 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!