config fixes, updates

This commit is contained in:
matthieu42morin 2024-04-29 05:55:39 +02:00
parent b3ea1e4f4c
commit 05826f9343
2 changed files with 12 additions and 14 deletions

View File

@ -5,7 +5,7 @@ export const post: PostConfig = {
use: ['Webmention'],
style: 'boxed', // comment system bar styles: none / bordered / lifted / boxed
webmention: {
username: '[mattmor.in]',
username: 'mattmor.in',
sortBy: 'created', // sort by: created / updated
sortDir: 'down', // sort order: up / down
form: true, // enable comments: true / false

View File

@ -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',