bilanin
bilanin
In my case that error was caused by vue-sfc file without tag. Also lack of `lang="ts"` triggers same error
Got similar question. In my case im building single component as a library (vite build.lib). Found some workaround: `NODE_ENV=development vite build` that allows to see setup info in devtools
And more correct way, at least in my case, is this (@vitejs/plugin-vue): ``` vue({ features: { prodDevtools: true, } }), ```