mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 02:43:48 +02:00
Add OpenGraph stuff, add PNG favicon
This commit is contained in:
@@ -2,6 +2,7 @@ import { withMermaid } from 'vitepress-plugin-mermaid';
|
|||||||
import footnote from 'markdown-it-footnote';
|
import footnote from 'markdown-it-footnote';
|
||||||
import tailwindcss from '@tailwindcss/vite';
|
import tailwindcss from '@tailwindcss/vite';
|
||||||
import llmstxt from 'vitepress-plugin-llms';
|
import llmstxt from 'vitepress-plugin-llms';
|
||||||
|
import { HeadConfig } from 'vitepress';
|
||||||
|
|
||||||
// https://vitepress.dev/reference/site-config
|
// https://vitepress.dev/reference/site-config
|
||||||
export default withMermaid({
|
export default withMermaid({
|
||||||
@@ -9,7 +10,11 @@ export default withMermaid({
|
|||||||
description: 'A VitePress Site',
|
description: 'A VitePress Site',
|
||||||
cleanUrls: true,
|
cleanUrls: true,
|
||||||
head: [
|
head: [
|
||||||
['link', { rel: 'icon', href: '/mediabunny-logo.svg' }],
|
['link', { rel: 'icon', type: 'image/svg+xml', href: '/mediabunny-logo.svg' }],
|
||||||
|
['link', { rel: 'icon', type: 'image/png', href: '/mediabunny-logo.png' }],
|
||||||
|
['meta', { property: 'og:type', content: 'website' }],
|
||||||
|
['meta', { property: 'og:site_name', content: 'Mediabunny' }],
|
||||||
|
['meta', { property: 'og:image', content: '/mediabunny-og-image.png' }],
|
||||||
],
|
],
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
logo: '/mediabunny-logo.svg',
|
logo: '/mediabunny-logo.svg',
|
||||||
@@ -94,4 +99,14 @@ export default withMermaid({
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
outDir: '../dist-docs',
|
outDir: '../dist-docs',
|
||||||
|
transformPageData(pageData) {
|
||||||
|
let title = pageData.title;
|
||||||
|
if (title !== 'Mediabunny') {
|
||||||
|
title += ' | Mediabunny';
|
||||||
|
}
|
||||||
|
|
||||||
|
((pageData.frontmatter['head'] ??= []) as HeadConfig[]).push(
|
||||||
|
['meta', { property: 'og:title', content: title }],
|
||||||
|
);
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 379 KiB |
Reference in New Issue
Block a user