diff --git a/src/popup/components/Header.vue b/src/popup/components/Header.vue index 62f4072..acbf4e7 100644 --- a/src/popup/components/Header.vue +++ b/src/popup/components/Header.vue @@ -41,6 +41,7 @@ target="_blank" class="bug-button float-right" title="Report an issue" + v-if="isBeta" v-b-tooltip.hover > diff --git a/webpack.config.js b/webpack.config.js index 6442435..2849fb8 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -129,6 +129,7 @@ if (config.mode === 'development') { if (config.mode === 'production') { config.plugins = (config.plugins || []).concat([ new webpack.DefinePlugin({ + 'devConfig': 'null', 'process.env': { 'NODE_ENV': '"production"', 'BETA': JSON.stringify(!!process.env.BETA),