Add JSON LD, make homepage h-card representative, Fix bug with byline fix incorrect OG image aspect ratio in meta Add og site_name Add author profile image
14 lines
No EOL
325 B
TypeScript
14 lines
No EOL
325 B
TypeScript
|
|
import { dev } from '$app/environment';
|
|
|
|
|
|
|
|
export const SITE_TITLE = "Jade's Website";
|
|
|
|
export const SITE_URL = dev ? "http://localhost:5173" : "https://jade.ellis.link"
|
|
|
|
export const SITE_DOMAIN = 'jade.ellis.link';
|
|
export const SITE_DEFAULT_DESCRIPTION =
|
|
"Jade's website.";
|
|
|
|
export const RSS_DEFAULT_POSTS_PER_PAGE = 15; |