micromissiles-unity/docs/.vuepress/config.js

30 lines
1008 B
JavaScript
Raw Normal View History

2024-09-30 02:26:02 -07:00
module.exports = async () => {
2024-09-30 02:26:25 -07:00
const {viteBundler} = await import('@vuepress/bundler-vite')
2024-09-30 02:26:02 -07:00
return {
2024-09-30 02:26:25 -07:00
title: 'Micromissiles Unity Project',
description: 'Documentation for the Micromissiles Unity project',
base: '/micromissiles-unity/', themeConfig: {
2024-09-30 02:26:25 -07:00
navbar:
[
{text: 'Home', link: '/'}, {
text: 'Keybinds and Controls',
2024-10-02 00:51:39 -07:00
link: '/Keybinds_and_Controls/'
2024-09-30 02:26:25 -07:00
},
{
text: 'Simulation Configuration Guide',
2024-10-02 00:51:39 -07:00
link: '/Simulation_Config_Guide/'
2024-09-30 02:26:25 -07:00
},
2024-10-02 00:51:39 -07:00
{text: 'Simulation Logging', link: '/Simulation_Logging/'},
2024-09-30 02:26:25 -07:00
{
text: 'Coverage Reports',
2024-10-02 00:51:39 -07:00
link: '/coverage/editmode/Report/'
2024-09-30 02:26:25 -07:00
}, // Link to coverage reports
],
sidebar: 'auto',
},
2024-10-02 00:51:39 -07:00
bundler: viteBundler(),
2024-09-30 02:26:25 -07:00
patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
2024-09-30 02:26:02 -07:00
}
}