fix: feed links

This commit is contained in:
Cory Dransfeldt 2024-02-19 09:46:57 -08:00
parent e4b397026f
commit bb6f9a3ec2
No known key found for this signature in database
5 changed files with 33 additions and 16 deletions

View file

@ -1,15 +1,8 @@
export default {
siteName: 'Cory Dransfeldt',
siteDescription:
"I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.",
author: 'Cory Dransfeldt',
email: 'coryd@hey.com',
url: 'https://coryd.dev',
themeColor: '#3b82f6',
siteType: 'Person',
locale: 'en_US',
lang: 'en',
meta_data: {
opengraph_default: 'https://coryd.dev/assets/img/logo.webp',
},
import { createRequire } from 'module'
const require = createRequire(import.meta.url)
const metaData = require('./json/meta.json')
export default async function () {
return metaData
}