/ website / source / .vitepress / config.mts
config.mts
 1  import { defineConfig } from 'vitepress'
 2  
 3  export default defineConfig({
 4    title: "Lineage2TS High Five Emulator",
 5    description: "Lineage2TS is open-source MMO server platform focused on implementing fully featured Lineage 2 server in Typescript, supporting High Five client",
 6    head: [],
 7    themeConfig: {
 8      nav: [
 9        { text: 'Home', link: '/' },
10        { text: 'Gitlab', link: 'https://gitlab.com/MrTREX/lineage2ts' },
11        { text: 'Community', link: 'https://discord.gg/jBGsxdwcT7' },
12      ],
13      socialLinks: [
14        { icon: 'gitlab', link: 'https://gitlab.com/MrTREX/lineage2ts' },
15        { icon: 'discord', link: 'https://discord.gg/jBGsxdwcT7' },
16      ],
17      footer: {
18        message: 'Lineage2TS is open-source MMO server platform focused on implementing fully featured Lineage 2 server in Typescript',
19        copyright: 'Copyright © 2026 Lineage2TS. All rights reserved.',
20      },
21    },
22    base: '/lineage2ts/',
23  })