2024-06-03 12:16:11 +02:00
|
|
|
class Config {
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
|
this.config = {
|
|
|
|
|
"url": "https://www.tooloop.de",
|
2024-06-03 16:32:05 +02:00
|
|
|
"whitelist": [
|
2024-06-03 12:16:11 +02:00
|
|
|
"tooloop.de",
|
|
|
|
|
"www.tooloop.de"
|
|
|
|
|
],
|
|
|
|
|
"logPath": "tooloop-kiosk-browser.log"
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let config = {
|
|
|
|
|
"url": "https://www.tooloop.de",
|
2024-06-03 16:32:05 +02:00
|
|
|
"whitelist": [
|
2024-06-03 12:16:11 +02:00
|
|
|
"tooloop.de",
|
|
|
|
|
"www.tooloop.de"
|
|
|
|
|
],
|
|
|
|
|
"logPath": "tooloop-kiosk-browser.log"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
exports.config = config;
|
|
|
|
|
|
|
|
|
|
exports.load = () => {
|
|
|
|
|
console.log(config);
|
|
|
|
|
};
|