1.2.2
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s

This commit is contained in:
2026-04-28 22:34:10 +02:00
parent e1d561ef9a
commit 00e4172942
15 changed files with 1414 additions and 1672 deletions

View File

@@ -9,4 +9,16 @@ export const Components = {
export const Utils = {
Locale, tt
};
};
if (typeof window !== 'undefined') {
Object.entries({ ...Components, ...Utils }).forEach(([name, value]) => {
Object.defineProperty(window, name, {
value,
writable: false,
configurable: true,
enumerable: true
});
});
}