You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building with Vite > 3.1.0 gives the following error:
error during build:
TypeError: Cannot set properties of undefined (setting 'generateBundle')
at configResolved (/.../vite-dts/dist/cjs/plugin.js:56:33)
Worked fine prior to 3.1.0 release. Appears to be related to "this" (pun intended): vitejs/vite@2d2f2e5
I believe the fix is to move the generateBundle function def outside of the configResolved function.
The text was updated successfully, but these errors were encountered:
I had the same issue. One solution I found was to replace the "vite-dts" library by "vite-plugin-dts". They seem to do exactly the same thing, but the last one has more recent updates and doesn't give me an error when generating the build.
Building with Vite > 3.1.0 gives the following error:
Worked fine prior to 3.1.0 release. Appears to be related to "this" (pun intended): vitejs/vite@2d2f2e5
I believe the fix is to move the
generateBundle
function def outside of theconfigResolved
function.The text was updated successfully, but these errors were encountered: