Browse Source

fix: Frontend config fetching from relative url

Owen Diffey 1 year ago
parent
commit
931a9054a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/main.js

+ 1 - 1
frontend/src/main.js

@@ -12,7 +12,7 @@ import store from "./store";
 import AppComponent from "./App.vue";
 
 const defaultConfigURL = new URL(
-	"config/default.json",
+	"/config/default.json",
 	import.meta.url
 ).toString();