Files
Exiled-Exchange-2/docs/.vitepress/config.js
Kvan7 c25192e6fe Dev (#128)
* Changes wordig for one vs two hand items (#120)

* [PoE2] - Rune type mod showing as "filters.tag_rune" instead of "RUNE" #108

* [PoE2] Missing Total / Elemental DPS on weapon #109

* [PoE2] no option to change from divine currency to exalt in price check #119

* Adds + to all ele res

* version bump

* also version bump
2024-12-19 15:44:09 -06:00

65 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.1.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'
}]
}
]
}
})