From 4882caea458260de58eef03839dcac54066d1425 Mon Sep 17 00:00:00 2001 From: Daniel Lovell Date: Mon, 30 Sep 2024 02:05:35 -0700 Subject: [PATCH] Update config.js --- docs/.vuepress/config.js | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 402cacb..8944f73 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -1,17 +1,25 @@ module.exports = { - 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'], - } \ No newline at end of file + 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'], +} \ No newline at end of file