Clean up config.js formatting
parent
4fb40a2bc6
commit
611dcb8365
|
@ -1,32 +1,30 @@
|
|||
module.exports = async () => {
|
||||
const { viteBundler } = await import('@vuepress/bundler-vite')
|
||||
|
||||
const {viteBundler} = await import('@vuepress/bundler-vite')
|
||||
|
||||
return {
|
||||
title : 'Micromissiles Unity Project',
|
||||
description : 'Documentation for the Micromissiles Unity project',
|
||||
base : './',
|
||||
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',
|
||||
},
|
||||
bundler: viteBundler(),
|
||||
public: '../images',
|
||||
// Add this to ensure INDEX.md is used as the home page
|
||||
patterns : ['INDEX.md', '**/*.md', '**/*.vue'],
|
||||
title: 'Micromissiles Unity Project',
|
||||
description: 'Documentation for the Micromissiles Unity project',
|
||||
base: './', 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',
|
||||
},
|
||||
bundler: viteBundler(), public: '../images',
|
||||
// Add this to ensure INDEX.md is used as the home page
|
||||
patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue