Skip to content

Commit

Permalink
chore(demo): workaround for [email protected] regression (#891)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov authored Jan 11, 2024
1 parent f5ed7eb commit 060c8a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/demo/webpack.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Configuration} from 'webpack';
import {Configuration, DefinePlugin} from 'webpack';
import {merge} from 'webpack-merge';

/**
Expand Down Expand Up @@ -42,6 +42,11 @@ const config: Configuration = {
vue$: 'vue/dist/vue.esm-bundler.js',
},
},
plugins: [
new DefinePlugin({
__VUE_PROD_DEVTOOLS__: 'false', // vue 3.4.0 regression (https://github.com/vuejs/core/issues/10039#issuecomment-1883015495)
}),
],
output: {
hashFunction: 'xxhash64',
},
Expand Down

0 comments on commit 060c8a5

Please sign in to comment.