feat: indieweb standards
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

This commit is contained in:
2026-07-20 11:06:21 +02:00
parent 2145c0f703
commit 1079ae9df1
7 changed files with 376 additions and 221 deletions
+18 -17
View File
@@ -1,18 +1,19 @@
import packageJson from '@/../package.json'
import articlesConfig from '@articles/config.json'
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 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
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;