Attempt to decouple docs and test jobs

This commit is contained in:
Daniel Lovell
2024-09-30 02:05:26 -07:00
parent 765f3983f3
commit e9d3f2b388
4 changed files with 94 additions and 73 deletions

View File

@@ -1,18 +1,17 @@
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;
}
},
}
title: 'Micromissiles Unity Project',
description: 'Documentation for the Micromissiles Unity project',
base: '/micromissiles-unity/',
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' },
{ text: 'Coverage Reports', link: '/coverage/' }, // Link to coverage reports
],
sidebar: 'auto',
},
// Add this to ensure INDEX.md is used as the home page
patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
}