How Bizarre
How Bizarre
I have the same issue, but when disabling nuxt devtools, all goes to normal. ```typescript //nuxt.config.ts export default defineNuxtConfig({ devtools: { enabled: false } }); ```
👍 [https://stackblitz.com/edit/nuxt-patch-gjclzp](https://stackblitz.com/edit/nuxt-patch-gjclzp)
I added `--no-optimize` to the build script and everything works fine. During the build, Parcel shows a message ``` ⠸ Optimizing index.html... You are trying to configure cleanupIDs which is...
I have the same problem with my Nuxt app. To avoid it, I delete the node_models folder in the output directory and reinstall it. ``` $ NITRO_PRESET=firebase npm run build...
Still here with vue-tsc version 2.0.19. ``` ERROR Cannot start nuxt: Cannot find module 'vue-tsc/out/index' 10:21:56 ч. Require stack: - \node_modules\vite-plugin-checker\dist\esm\checkers\vueTsc\prepareVueTsc.js ``` ------------------------------ - Operating System: Windows_NT - Node Version:...
```typescript export default defineNuxtConfig({ typescript: { strict: true, typeCheck: false } } ``` Disable type checking at build time and run it from the console or as script in package.json...