diff --git a/src/lib/config/post.ts b/src/lib/config/post.ts index 2a9fedb..66e4d1b 100644 --- a/src/lib/config/post.ts +++ b/src/lib/config/post.ts @@ -1,15 +1,15 @@ import type { PostConfig } from '$lib/types/post' export const post: PostConfig = { - comment: { - use: ['Webmention'], - style: 'boxed', // comment system bar styles: none / bordered / lifted / boxed - webmention: { - username: '[mattmor.in]', - sortBy: 'created', // sort by: created / updated - sortDir: 'down', // sort order: up / down - form: true, // enable comments: true / false - commentParade: true // enable anonymous comments: true / false + comment: { + use: ['Webmention'], + style: 'boxed', // comment system bar styles: none / bordered / lifted / boxed + webmention: { + username: 'mattmor.in', + sortBy: 'created', // sort by: created / updated + sortDir: 'down', // sort order: up / down + form: true, // enable comments: true / false + commentParade: true // enable anonymous comments: true / false + } } - } } diff --git a/src/lib/config/site.ts b/src/lib/config/site.ts index b6c9d56..e11ed72 100644 --- a/src/lib/config/site.ts +++ b/src/lib/config/site.ts @@ -1,7 +1,5 @@ import type { SiteConfig } from '$lib/types/site' -import { URARA_SITE_PROTOCOL, URARA_SITE_DOMAIN } from '$env/static/public' - export const socialNicks = { /* Social Nicknames */ Email: 'matt.b.morin@protonmail.com', @@ -45,8 +43,8 @@ const bio = [ ] export const site: SiteConfig = { - protocol: URARA_SITE_PROTOCOL ?? import.meta.env.DEV ? 'http://' : 'https://', - domain: URARA_SITE_DOMAIN ?? 'mattmor.in', + protocol: import.meta.env.DEV ? 'http://' : 'https://', + domain: 'mattmor.in', title: "Matt's Portfolio", subtitle: 'The portfolio and blog of Matt Morin - ideas, projects and thoughts', lang: 'en-US',