mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-13 20:30:27 +03:00
- Updated various components to include `lang` attributes for improved accessibility and SEO. - Introduced a new `env.d.ts` file to define environment variables for better type safety. - Adjusted the print width in `.prettierrc.mjs` for improved code formatting. - Streamlined the `Header`, `PostElement`, and `SocialLinks` components for better structure and clarity. - Added language support to blog posts and updated the layout to reflect these changes.
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
interface ImportMetaEnv {
|
|
readonly DEFAULT_TITLE: string;
|
|
readonly DEFAULT_DESCRIPTION: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|