Skip to content

Commit e06ad55

Browse files
committed
Fixes #2250
- Add check that code is running in a browser before adding devtools
1 parent b18718b commit e06ad55

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/store.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import {
1212
unifyObjectStyle
1313
} from './store-util'
1414

15+
const isBrowser = typeof document !== 'undefined'
16+
1517
export function createStore (options) {
1618
return new Store(options)
1719
}
@@ -73,9 +75,9 @@ export class Store {
7375
app.provide(injectKey || storeKey, this)
7476
app.config.globalProperties.$store = this
7577

76-
const useDevtools = this._devtools !== undefined
78+
const useDevtools = (this._devtools !== undefined
7779
? this._devtools
78-
: __DEV__ || __VUE_PROD_DEVTOOLS__
80+
: __DEV__ || __VUE_PROD_DEVTOOLS__) && isBrowser
7981

8082
if (useDevtools) {
8183
addDevtools(app, this)

0 commit comments

Comments
 (0)