diff --git a/src/util.js b/src/util.js index b1b7f773..44eaebc6 100644 --- a/src/util.js +++ b/src/util.js @@ -1,7 +1,8 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TimeLogger = exports.polyfill = exports.debug = exports.ucfirst = exports.sleep = exports.flipStatus = exports.PENDING = exports.UP = exports.DOWN = exports.appName = exports.isDev = void 0; -const dayjs = require("dayjs"); +const _dayjs = require("dayjs"); +const dayjs = _dayjs; exports.isDev = process.env.NODE_ENV === "development"; exports.appName = "Uptime Kuma"; exports.DOWN = 0; diff --git a/src/util.ts b/src/util.ts index bb55ee08..add9f193 100644 --- a/src/util.ts +++ b/src/util.ts @@ -4,7 +4,8 @@ // Frontend uses util.ts // Need to run "tsc" to compile if there are any changes. -import * as dayjs from "dayjs"; +import * as _dayjs from "dayjs"; +const dayjs = _dayjs; export const isDev = process.env.NODE_ENV === "development"; export const appName = "Uptime Kuma";