loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Avoid vue warning in dev mode (#29188)

`vue` currently outputs a warning for this undefined variable during
development, which is apparently caused by a bug in `vue-cli`.
Workaround by setting this variable.

Ref: https://github.com/vuejs/vue-cli/pull/7443
Ref: https://stackoverflow.com/a/77765007/808699
(cherry picked from commit e9a1ffba2c294f74d985870e9b7b5b07e9000857)

authored by

silverwind and committed by
Earl Warren
3adfb6cb 6f159f4c

+1
+1
webpack.config.js
··· 176 176 new DefinePlugin({ 177 177 __VUE_OPTIONS_API__: true, // at the moment, many Vue components still use the Vue Options API 178 178 __VUE_PROD_DEVTOOLS__: false, // do not enable devtools support in production 179 + __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false, // https://github.com/vuejs/vue-cli/pull/7443 179 180 }), 180 181 new VueLoaderPlugin(), 181 182 new MiniCssExtractPlugin({