Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
docs: add logo and meta
Browse files Browse the repository at this point in the history
  • Loading branch information
tycrek committed Dec 4, 2023
1 parent 0821954 commit 7e15d29
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from 'vitepress';

const LOGO = 'https://i.tycrek.dev/ass';

// https://vitepress.dev/reference/site-config
export default defineConfig({
lang: 'en-US',
title: "ass docs",
description: "Documentation for ass, a ShareX server",
cleanUrls: true,
lastUpdated: true,

head: [
['meta', { property: 'og:image', content: LOGO }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'twitter:domain', content: 'ass.tycrek.dev' }],
['meta', { property: 'twitter:image', content: LOGO }],
['link', { rel: 'icon', href: LOGO }],
],

themeConfig: {
// https://vitepress.dev/reference/default-theme-config
logo: LOGO,

nav: [
{ text: 'Home', link: '/' },
{
Expand Down

0 comments on commit 7e15d29

Please sign in to comment.