From eba18eef341ba4f7c61c0e80042d91c2d6f77a8c Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Wed, 23 Sep 2020 18:31:58 +0200 Subject: [PATCH] refactor: simpler devtools --- src/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store.ts b/src/store.ts index efb37c92..0776c796 100644 --- a/src/store.ts +++ b/src/store.ts @@ -204,7 +204,7 @@ export function createStore< (store = buildStore(id, state, getters, actions, getInitialState(id))) ) - if (IS_CLIENT && __BROWSER__ && (__DEV__ || __FEATURE_PROD_DEVTOOLS__)) { + if (IS_CLIENT && __DEV__ /*|| __FEATURE_PROD_DEVTOOLS__*/) { const app = getClientApp() if (app) { addDevtools(app, store, req) -- 2.47.2