Packages

Potionx project generator. Provides a `mix potionx.new` task to bootstrap a new Elixir application with Phoenix, Absinthe, Pow and Vue dependencies.

Current section

Files

Jump to
potionx_new templates potionx frontend shared src signOut.ts
Raw

templates/potionx/frontend/shared/src/signOut.ts

export default async () => {
await fetch(
`/api/v1/session/delete`
)
window.location.href = "/login";
}