From: silverwind Date: Fri, 9 Apr 2021 10:12:55 +0000 (+0200) Subject: Disable Vue's console advertisments (#15354) X-Git-Tag: v1.15.0-rc1~496 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=99f835b9cab8da9a14688d88228057518ca1f669;p=gitea.git Disable Vue's console advertisments (#15354) --- diff --git a/web_src/js/index.js b/web_src/js/index.js index 28f2087e38..d5fe53eef3 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -35,6 +35,11 @@ const commentMDEditors = {}; // Silence fomantic's error logging when tabs are used without a target content element $.fn.tab.settings.silent = true; +// Silence Vue's console advertisments in dev mode +// To use the Vue browser extension, enable the devtools option temporarily +Vue.config.productionTip = false; +Vue.config.devtools = false; + function initCommentPreviewTab($form) { const $tabMenu = $form.find('.tabular.menu'); $tabMenu.find('.item').tab();