mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-11-02 23:57:25 +00:00
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
import { defineConfig } from 'vitepress'
|
|
|
|
const BASE = '/Exiled-Exchange-2/'
|
|
|
|
export default defineConfig({
|
|
title: 'Exiled Exchange 2',
|
|
description: 'App for price-checking items in Path of Exile 2',
|
|
base: BASE,
|
|
mpa: true,
|
|
head: [
|
|
['link', { rel: 'shortcut icon', type: 'image/png', href: `${BASE}favicon.png` }],
|
|
['meta', { name: 'google-site-verification', content: 'R0xdvBEYFTxfn0RxHhquiA6tBgvshYv3ODk-oNSuq4g' }]
|
|
],
|
|
markdown: {
|
|
theme: 'light-plus',
|
|
attrs: {
|
|
leftDelimiter: '{:',
|
|
rightDelimiter: '}'
|
|
}
|
|
},
|
|
themeConfig: {
|
|
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
|
|
appVersion: '0.12.2',
|
|
github: {
|
|
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
|
|
},
|
|
socialLinks: [
|
|
{
|
|
text: 'GitHub',
|
|
color: '#181717',
|
|
link: 'https://github.com/Kvan7/Exiled-Exchange-2'
|
|
}
|
|
],
|
|
sidebar: [
|
|
{
|
|
items: [{
|
|
text: 'Download',
|
|
link: '/download'
|
|
}, {
|
|
text: 'Quick Start',
|
|
link: '/quick-start'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
items: [{
|
|
text: 'Chat commands',
|
|
link: '/chat-commands'
|
|
}, {
|
|
text: 'OCR Guide',
|
|
link: '/ocr-guide'
|
|
}]
|
|
},
|
|
{
|
|
items: [{
|
|
text: 'Common issues',
|
|
link: '/issues'
|
|
}, {
|
|
text: 'FAQ',
|
|
link: '/faq'
|
|
}]
|
|
}
|
|
]
|
|
}
|
|
})
|