From af857ca66c9b1886bee77f7fe60d196fb5e388d7 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Mon, 19 Dec 2022 00:56:42 +0300 Subject: [PATCH] Update appState.js --- plugins/appState.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/appState.js b/plugins/appState.js index d0474b21d..91920d16f 100644 --- a/plugins/appState.js +++ b/plugins/appState.js @@ -1,6 +1,6 @@ const $appState = { install: (Vue, options) => { - Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: process.env.NODE_ENV === 'production', announcement: {} }); + Vue.config.globalProperties.$appState = reactive({ theme: 'lara-light-blue', darkTheme: false, codeSandbox: false, sourceType: 'options-api', newsActive: true, announcement: {} }); } };