This commit is contained in:
peintnermax
2024-09-10 13:56:44 +02:00
parent 1466bb3b70
commit 3d33b36473

View File

@@ -10,10 +10,9 @@ if (fs.existsSync(customConfigPath)) {
import(customConfigPath) import(customConfigPath)
.then((module) => { .then((module) => {
customConfig = module.default; customConfig = module.default;
console.log("found", customConfig);
}) })
.catch((error) => { .catch((error) => {
console.error("Error loading custom configuration:", error); console.warn("Error loading custom configuration:", error);
}); });
} else { } else {
console.info("No custom configuration file found!"); console.info("No custom configuration file found!");