aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/index.js b/server/index.js
index 84a4f55..57ed1d6 100644
--- a/server/index.js
+++ b/server/index.js
@@ -35,10 +35,10 @@ export default {
"https://raw.githubusercontent.com/zuedev/monorepo/main/unsorted/Shadow%20VRChat%20Devbox/setup.ps1"
);
- // return the script with the correct content-type
+ // return the script as text/plain
return new Response(scriptResponse.body, {
headers: {
- "Content-Type": "application/octet-stream",
+ "Content-Type": "text/plain",
},
});
}