You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
demo-graphql-oauth/client/src/routes/sign-out.svelte

10 lines
266 B

<script context="module">
import { signOutMutationRequest, token } from "./_components/common"
export async function preload() {
token.set(null)
await signOutMutationRequest()
await this.redirect(302, "/")
}
</script>