diff --git a/src/routes/cli/install.ps1/+page.server.ts b/src/routes/cli/install.ps1/+page.server.ts new file mode 100644 index 0000000000..2640eb20a7 --- /dev/null +++ b/src/routes/cli/install.ps1/+page.server.ts @@ -0,0 +1,8 @@ +import { redirect } from '@sveltejs/kit'; + +export function load() { + redirect( + 301, + 'https://raw.githubusercontent.com/appwrite/sdk-for-cli/refs/heads/master/install.ps1' + ); +}