-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4882cae
commit 4fb40a2
Showing
4 changed files
with
42 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules/ | ||
package-lock.json | ||
.vuepress/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,32 @@ | ||
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'], | ||
} | ||
module.exports = async () => { | ||
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'], | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters