diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2025-12-18 19:51:28 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2025-12-18 19:51:28 +0000 |
| commit | 5728d4bec0ac5225fcdc23b1b936960010177242 (patch) | |
| tree | b58007b0e18c8b6dc86327ab2b47af0e40f9f16a /server/index.js | |
| parent | 0aa4e633625459a841017cd19c2c36e9bbc02de5 (diff) | |
| download | zue.dev-5728d4bec0ac5225fcdc23b1b936960010177242.tar zue.dev-5728d4bec0ac5225fcdc23b1b936960010177242.tar.gz zue.dev-5728d4bec0ac5225fcdc23b1b936960010177242.tar.bz2 zue.dev-5728d4bec0ac5225fcdc23b1b936960010177242.tar.xz zue.dev-5728d4bec0ac5225fcdc23b1b936960010177242.zip | |
Update content-type for /shadow-vrchat.ps1 response to text/plain
Diffstat (limited to 'server/index.js')
| -rw-r--r-- | server/index.js | 4 |
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", }, }); } |
