We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109d0f1 commit 915e534Copy full SHA for 915e534
3 files changed
e2e/bundlers/package.json
@@ -15,7 +15,7 @@
15
"parcel": "2.16.4",
16
"rimraf": "3.0.2",
17
"rollup": "4.59.0",
18
- "vite": "5.4.21",
+ "vite": "6.4.2",
19
"webpack": "5.105.4",
20
"webpack-cli": "4.10.0",
21
"devextreme": "workspace:*",
e2e/bundlers/vite.config.js
@@ -1,6 +1,9 @@
1
import rollupConfig from './rollup.config.mjs';
2
3
delete rollupConfig.output.file;
4
+// Vite 6 applies its own @rollup/plugin-commonjs internally; remove the user-provided
5
+// instance to avoid the "default is not exported" conflict with CJS modules (e.g. jszip).
6
+rollupConfig.plugins = rollupConfig.plugins.filter(p => p.name !== 'commonjs');
7
8
module.exports = {
9
build: {
0 commit comments