Fix VitePress site hierarchy

master
Daniel Lovell 2024-10-02 00:51:39 -07:00
parent 78b349610f
commit dc811e0185
2 changed files with 5 additions and 8 deletions

View File

@ -168,8 +168,6 @@ public class SimMonitor : MonoBehaviour
catch (IOException e) catch (IOException e)
{ {
Debug.LogWarning($"An IO error occurred while converting binary telemetry to CSV: {e.Message}"); Debug.LogWarning($"An IO error occurred while converting binary telemetry to CSV: {e.Message}");
//System.Threading.Thread.Sleep(1000);
//ConvertBinaryTelemetryToCsv(binaryFilePath, csvFilePath);
} }
} }

View File

@ -9,22 +9,21 @@ module.exports = async () => {
[ [
{text: 'Home', link: '/'}, { {text: 'Home', link: '/'}, {
text: 'Keybinds and Controls', text: 'Keybinds and Controls',
link: '/Keybinds_and_Controls.html' link: '/Keybinds_and_Controls/'
}, },
{ {
text: 'Simulation Configuration Guide', text: 'Simulation Configuration Guide',
link: '/Simulation_Config_Guide.html' link: '/Simulation_Config_Guide/'
}, },
{text: 'Simulation Logging', link: '/Simulation_Logging.html'}, {text: 'Simulation Logging', link: '/Simulation_Logging/'},
{ {
text: 'Coverage Reports', text: 'Coverage Reports',
link: '/coverage/' link: '/coverage/editmode/Report/'
}, // Link to coverage reports }, // Link to coverage reports
], ],
sidebar: 'auto', sidebar: 'auto',
}, },
bundler: viteBundler(), public: '../images', bundler: viteBundler(),
// Add this to ensure INDEX.md is used as the home page
patterns: ['INDEX.md', '**/*.md', '**/*.vue'], patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
} }
} }