mirror of
https://github.com/p-stream/backend.git
synced 2026-01-11 20:10:33 +00:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
const meta = useRuntimeConfig().public.meta;
|
|
export default defineEventHandler(event => {
|
|
return {
|
|
name: meta.name,
|
|
description: meta.description,
|
|
version: meta.version,
|
|
hasCaptcha: meta.captcha === 'true',
|
|
captchaClientKey: meta.captchaClientKey,
|
|
};
|
|
});
|