aboutsummaryrefslogtreecommitdiff
path: root/hooks/client.ts
blob: b65ecdc24b634d2252d46605d8ba31aab93914c0 (plain)
1
2
3
4
5
6
7
8
9
// Client-side setup runs once when the app mounts.
// Later: service worker registration, audio unlock on first gesture,
// persistent-storage request, IndexedDB hydration. Empty for now.

import type { ClientInit } from '@sveltejs/kit'

export const init: ClientInit = async () => {
  // Intentionally empty. Systems attach here as they come online.
}