Add docs.yaml, update test.yaml, vuepress

This commit is contained in:
Daniel Lovell
2024-09-30 01:39:12 -07:00
parent 474c322b35
commit 765f3983f3
4 changed files with 107 additions and 24 deletions

18
docs/.vuepress/config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
title: 'Micromissiles Unity Project',
description: 'Documentation for the Micromissiles Unity project',
themeConfig: {
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' },
],
sidebar: 'auto',
},
extendsPageData: (pageData) => {
if (pageData.relativePath === 'README.md') {
pageData.frontmatter.home = true;
}
},
}