0👍
Try to run these commands:
npm config set registry http://registry.npmjs.org
npm -g install npm
npm cache clean -f
After that try to run your project with:
npm run dev
- [Vuejs]-My modal component in Vue3 doesn't remount on page change
- [Vuejs]-Vuetify 3 decimal number input
0👍
This error is just because of the package 33998 could not be found in the npm registry.
For solution you need to install bootstrap package in your application manually.
For installing BootStrap Use
npm install bootstrap
Also clean the cache of npm forcefully by
npm cache clean –force
Also check the latest npm version and update it if it was to old.
npm -v
npm install -g npm
- [Vuejs]-Shopware 6, jest test: [vuex] module namespace not found in mapState():
- [Vuejs]-VUEJS3 / TYPESCRIPT View data imported from an API
Source:stackexchange.com