mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-18 04:04:41 -05:00
env default to production
This commit is contained in:
parent
058032a26a
commit
77af41bfff
@ -35,8 +35,8 @@ export default {
|
|||||||
window.addEventListener('resize', this.onResize);
|
window.addEventListener('resize', this.onResize);
|
||||||
|
|
||||||
let wsHost;
|
let wsHost;
|
||||||
const env = process.env.NODE_ENV || 'development';
|
const env = process.env.NODE_ENV || "production";
|
||||||
if (env === "development") {
|
if (env === "development" || localStorage.dev === "dev") {
|
||||||
wsHost = ":3001"
|
wsHost = ":3001"
|
||||||
} else {
|
} else {
|
||||||
wsHost = ""
|
wsHost = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user