mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 02:16:27 +00:00
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
// define global site url
|
|
const site = 'https://note.toshiki.dev'
|
|
|
|
// site metadatas with exports in use of global config
|
|
export const metaData = {
|
|
lang: 'en-US',
|
|
locale: 'en-US',
|
|
title: "Toshiki's Note",
|
|
description: "Toshiki's web notebook served via Vitepress!",
|
|
site,
|
|
// site head metatag open graph cover image
|
|
image: `${site}/og-cover.png`,
|
|
}
|