2024-10-02 01:36:42 -07:00
|
|
|
import { defineConfig } from 'vitepress'
|
|
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
|
|
export default defineConfig({
|
|
|
|
title: "micromissiles-unity",
|
|
|
|
description: "Swarm-on-swarm simulator using micromissiles for point defense",
|
2024-10-02 01:48:33 -07:00
|
|
|
base: '/micromissiles-unity/',
|
2024-10-02 01:36:42 -07:00
|
|
|
themeConfig: {
|
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
|
|
nav: [
|
|
|
|
{ text: 'Home', link: '/' },
|
2024-10-02 13:12:12 -07:00
|
|
|
{ text: 'Documentation', link: '/Keybinds_and_Controls' },
|
|
|
|
{ text: 'Development Guide', link: '/Development_Guide' }
|
2024-10-02 01:36:42 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
sidebar: [
|
|
|
|
{
|
|
|
|
text: 'Documentation',
|
|
|
|
items: [
|
|
|
|
{ text: 'Keybinds and Controls', link: '/Keybinds_and_Controls' },
|
|
|
|
{ text: 'Simulation Configuration Guide', link: '/Simulation_Config_Guide' },
|
|
|
|
{ text: 'Simulation Logging', link: '/Simulation_Logging' },
|
2024-10-02 13:12:12 -07:00
|
|
|
{ text: 'Coverage Reports', link: '/coverage/editmode/Report/' },
|
|
|
|
{ text: 'Development Guide', link: '/Development_Guide' }
|
2024-10-02 01:36:42 -07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
socialLinks: [
|
|
|
|
{ icon: 'github', link: 'https://github.com/PisterLab/micromissiles-unity' }
|
|
|
|
],
|
|
|
|
search: {
|
|
|
|
provider: 'local'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|