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 = "";