1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-10 08:26:19 +02:00

Use strict equality

This commit is contained in:
Kushagra Gour
2018-12-14 12:19:10 +05:30
committed by GitHub
parent de3dc48aee
commit 5bf9fbd7e7

View File

@ -18,7 +18,7 @@ window.IS_EXTENSION = !!window.chrome.extension;
export const BASE_PATH =
window.chrome.extension ||
window.DEBUG ||
process.env.NODE_ENV == 'development'
process.env.NODE_ENV === 'development'
? '/'
: '/app';