diff options
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/config.ts | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/src/util/config.ts b/src/util/config.ts new file mode 100644 index 0000000..a012398 --- /dev/null +++ b/src/util/config.ts @@ -0,0 +1,17 @@ +import getConfig from "../lib/config.js"; + +const config = getConfig(); + +interface FrontendConfig { +  domain: string; +  email: string; +  siteName: string; +  showKofi: boolean; +} + +export const frontendConfig = (): FrontendConfig => ({ +  domain: config.general.domain, +  email: config.general.email, +  siteName: config.general.site_name, +  showKofi: config.general.show_kofi, +});  | 
