From 7f9d6f8e6125382da2c6360e2bae51ee3be67d22 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Thu, 27 Apr 2023 17:27:51 +0000 Subject: [PATCH] update vars.js.template Signed-off-by: Arthur Lu --- vars.js.template | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/vars.js.template b/vars.js.template index 41c283d..0e11e9a 100644 --- a/vars.js.template +++ b/vars.js.template @@ -1,11 +1,9 @@ -const pveAPI = ""; -const pveAPIToken = { +export const pveAPI = ""; +export const pveAPIToken = { user: "", realm: "", id: "", uuid: "" }; -const listenPort = 80; -const domain = ""; - -module.exports = {pveAPI, listenPort, pveAPIToken, domain}; \ No newline at end of file +export const listenPort = 80; +export const domain = "";