File tree 2 files changed +2
-2
lines changed
bundler-webpack/src/config
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ const resolveDefine = async ({
209
209
// enable options API by default
210
210
__VUE_OPTIONS_API__ : JSON . stringify ( true ) ,
211
211
__VUE_PROD_DEVTOOLS__ : JSON . stringify ( app . env . isDebug ) ,
212
- __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ : JSON . stringify ( false ) ,
212
+ __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ : JSON . stringify ( app . env . isDebug ) ,
213
213
}
214
214
215
215
// override vite built-in define config in debug mode
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const handlePluginDefine = async ({
27
27
// enable options API by default
28
28
__VUE_OPTIONS_API__ : JSON . stringify ( true ) ,
29
29
__VUE_PROD_DEVTOOLS__ : JSON . stringify ( app . env . isDebug ) ,
30
- __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ : JSON . stringify ( false ) ,
30
+ __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ : JSON . stringify ( app . env . isDebug ) ,
31
31
} ,
32
32
] )
33
33
You can’t perform that action at this time.
0 commit comments