mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
|
import {PublicConfigClass} from "./ConfigClass";
|
||
|
import {WebConfigLoader} from "typeconfig/src/WebConfigLoader";
|
||
|
|
||
|
|
||
|
declare module ServerInject {
|
||
|
export const ConfigInject;
|
||
|
}
|
||
|
|
||
|
export let Config = new PublicConfigClass();
|
||
|
|
||
|
if (typeof ServerInject !== "undefined" && typeof ServerInject.ConfigInject !== "undefined") {
|
||
|
WebConfigLoader.loadFrontendConfig(Config.Client, ServerInject.ConfigInject);
|
||
|
}
|
||
|
|
||
|
|