fix vue cli-service feature flag warning
This commit is contained in:
parent
c6e61d5d76
commit
04097ea1a3
1 changed files with 11 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
const { defineConfig } = require("@vue/cli-service");
|
const { defineConfig } = require("@vue/cli-service");
|
||||||
|
const webpack = require("webpack");
|
||||||
|
|
||||||
module.exports = defineConfig({
|
module.exports = defineConfig({
|
||||||
transpileDependencies: true,
|
transpileDependencies: true,
|
||||||
|
@ -11,4 +12,14 @@ module.exports = defineConfig({
|
||||||
title: "Kalender-Gewinnspiel",
|
title: "Kalender-Gewinnspiel",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// https://stackoverflow.com/a/77765007
|
||||||
|
configureWebpack: {
|
||||||
|
plugins: [
|
||||||
|
new webpack.DefinePlugin({
|
||||||
|
// Vue CLI is in maintenance mode, and probably won't merge my PR to fix this in their tooling
|
||||||
|
// https://github.com/vuejs/vue-cli/pull/7443
|
||||||
|
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: "false",
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue