This commit is contained in:
babayaga
2025-12-27 09:25:38 +01:00
parent 37c7a78d1e
commit 48458746a7
10 changed files with 167 additions and 39 deletions
+11
View File
@@ -0,0 +1,11 @@
import { loadConfig } from '../src/app/config-loader.js';
import { I18N_SOURCE_LANGUAGE } from "../src/app/constants.js";
try {
const config = loadConfig(I18N_SOURCE_LANGUAGE);
console.log('LOGGING_NAMESPACE:', config.core.logging_namespace);
console.log('SHOW_GALLERY:', config.features.show_gallery);
} catch (e) {
console.error(e);
}