We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b391536 commit 981cca0Copy full SHA for 981cca0
tools/mode_configurator/src/App.vue
@@ -88,7 +88,7 @@ async function fetchModes() {
88
// Function to fetch version metadata
89
async function fetchVersions() {
90
try {
91
- const versionsResponse = await fetch('/mode_versions.json'); // Fetch from root relative to public dir
+ const versionsResponse = await fetch('mode_versions.json'); // Fetch relative to current base path
92
if (!versionsResponse.ok) {
93
throw new Error(`HTTP error fetching versions! status: ${versionsResponse.status}`);
94
}
0 commit comments