-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2953378
commit 989abf2
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import type { HeadConfig } from 'vitepress' | ||
|
||
const HOST_NAME = 'https://sidebase.io' | ||
const OG_IMAGE_URL = `${HOST_NAME}/sidebase-og.jpg` | ||
|
||
export const sitemapConfig = { | ||
hostname: HOST_NAME | ||
} | ||
|
||
export const headConfig: HeadConfig[] = [ | ||
['link', { rel: 'icon', href: '/favicon.ico' }], | ||
['meta', { name: 'theme-color', content: '#30A36C' }], | ||
['meta', { property: 'og:title', content: 'sidebase - by SIDESTREAM' }], | ||
['meta', { property: 'og:description', content: 'The web app development kit to build production fullstack Nuxt 3 apps quickly.' }], | ||
['meta', { property: 'og:site_name', content: 'sidebase' }], | ||
['meta', { property: 'og:type', content: 'website' }], | ||
['meta', { property: 'og:locale', content: 'en' }], | ||
['meta', { property: 'og:image', content: OG_IMAGE_URL }], | ||
['meta', { property: 'og:url', content: HOST_NAME }], | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.