mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
const META = {
|
|
DEFAULT_TITLE: (import.meta.env.PUBLIC_ENV__META__DEFAULT_TITLE as string) ?? 'IT4C',
|
|
DEFAULT_DESCRIPTION:
|
|
(import.meta.env.PUBLIC_ENV__META__DEFAULT_DESCRIPTION as string) ??
|
|
'IT4C Frontend Boilerplate',
|
|
}
|
|
|
|
export { META }
|