We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Importing vuedraggable in my application increases the bundle size by 215 kB (after minification), which is quite a lot.
vuedraggable
sortablejs itself is only 40 kB.
sortablejs
90 kB is taken by Vue template compiler. I don't know why it ends up being included. I resolved this in my Vite config by adding:
resolve: { alias: { vue: 'vue/dist/vue.runtime.esm-bundler.js', }, },
(see https://vuejs.org/guide/scaling-up/tooling.html#note-on-in-browser-template-compilation)
Most of the remaining 85 kB appears to come from polyfills, which are probably unnecessary.
The text was updated successfully, but these errors were encountered:
This seems to be an even better approach, solving both parts of the issue:
import Draggable from 'vuedraggable/src/vuedraggable';
(idea found in #117)
Sorry, something went wrong.
No branches or pull requests
Importing
vuedraggable
in my application increases the bundle size by 215 kB (after minification), which is quite a lot.sortablejs
itself is only 40 kB.90 kB is taken by Vue template compiler. I don't know why it ends up being included. I resolved this in my Vite config by adding:
(see https://vuejs.org/guide/scaling-up/tooling.html#note-on-in-browser-template-compilation)
Most of the remaining 85 kB appears to come from polyfills, which are probably unnecessary.
The text was updated successfully, but these errors were encountered: