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)
{
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: 'Keybinds and Controls',
link: '/Keybinds_and_Controls.html'
link: '/Keybinds_and_Controls/'
},
{
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',
link: '/coverage/'
link: '/coverage/editmode/Report/'
}, // Link to coverage reports
],
sidebar: 'auto',
},
bundler: viteBundler(), public: '../images',
// Add this to ensure INDEX.md is used as the home page
bundler: viteBundler(),
patterns: ['INDEX.md', '**/*.md', '**/*.vue'],
}
}