Error: Cannot find package '@vue/devtools-api' imported from #2657
Replies: 1 comment
-
|
The error comes from vue-router's devtools chunk ( Two fixes, depending on whether you want the chunk gone or just resolvable.
npm install @vue/devtools-api
nuxt build
// nuxt.config.ts
export default defineNuxtConfig({
vite: {
define: {
__VUE_PROD_DEVTOOLS__: false,
},
},
})With One more thing worth checking: remove |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I get this error when opening the page:
package.json:
how to solve this?
Beta Was this translation helpful? Give feedback.
All reactions