Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/7e15d29e971fc27af45aad5113224400aae398d7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

docs: add logo and meta

pull/249/head
Sylvie 1 year ago
parent 0821954f1f
commit 7e15d29e97
No known key found for this signature in database
GPG Key ID: 75AB0FE5B983A3AF

@ -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: '/' },
{

Loading…
Cancel
Save