From 3c739c43f4aaf6fe5189a9b18014f4aa4779b0f8 Mon Sep 17 00:00:00 2001 From: HoshinoKoji Date: Fri, 7 Mar 2025 08:32:32 +0800 Subject: [PATCH] Include origin in settings to allow cross-origin requests --- src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 052f347..3f64503 100644 --- a/src/App.vue +++ b/src/App.vue @@ -43,6 +43,7 @@ export default { allowAutoNext: true, darkMode: false, showItemIndex: true, + origin: '*', lang: 'en-US', }, lang, @@ -186,7 +187,7 @@ export default { started: this.started, ended: new Date().getTime(), results - }, window.origin); + }, this.settings.origin); } } }