mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
'use server';
|
|
|
|
export async function getConfig() {
|
|
return {
|
|
telemetryDisabled: !!process.env.DISABLE_TELEMETRY,
|
|
trackerScriptName: process.env.TRACKER_SCRIPT_NAME,
|
|
uiDisabled: !!process.env.DISABLE_UI,
|
|
updatesDisabled: !!process.env.DISABLE_UPDATES,
|
|
faviconUrl: process.env.FAVICON_URL,
|
|
};
|
|
}
|