Browse Source

fix: Frontend config fetching from relative url

Owen Diffey 1 năm trước cách đây
mục cha
commit
931a9054a1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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();