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

31 lines
1.1 KiB
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',
link: '/Keybinds_and_Controls.html'
},
{
text: 'Simulation Configuration Guide',
link: '/Simulation_Config_Guide.html'
},
{text: 'Simulation Logging', link: '/Simulation_Logging.html'},
{
text: 'Coverage Reports',
link: '/coverage/'
}, // Link to coverage reports
],
sidebar: 'auto',
},
bundler: viteBundler(), public: '../images',
// Add this to ensure INDEX.md is used as the home page
patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
2024-09-30 02:26:02 -07:00
}
}