Files
md-blog/src/lib/config.ts
T
klemek 1079ae9df1
Lint / ESLint (push) Successful in 2m3s
Lint / Oxlint (push) Successful in 2m3s
Lint / TypeScript (push) Successful in 2m14s
Deploy / Build (push) Successful in 5m4s
Deploy / Deploy to Stapler (push) Successful in 4m9s
feat: indieweb standards
2026-07-20 11:06:21 +02:00

20 lines
1006 B
TypeScript

import packageJson from "@/../package.json";
import articlesConfig from "@articles/config.json";
export const NAME: string = packageJson.name;
export const VERSION: string = packageJson.version;
export const REPOSITORY: string = packageJson.repository;
export const TITLE: string = articlesConfig.title;
export const SIGNATURE: string = articlesConfig.signature;
export const COPYRIGHT: string = articlesConfig.copyright;
export const FOOTER: string = articlesConfig.footer;
export const RSS_LINK: string = articlesConfig.rss_link;
export const BACK_LINK: string = articlesConfig.back_link;
export const ABOUT_LINK: string = articlesConfig.about_link;
export const HOME_COUNT: number = articlesConfig.home_count;
export const PUBLISHED_ON: string = articlesConfig.published_on;
export const UPDATED_ON: string = articlesConfig.updated_on;
export const AUTHORED: string = articlesConfig.authored;
export const BASE_URL: string = import.meta.env.BASE_URL;
export const PROD: boolean = import.meta.env.PROD;