aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/+layout.server.ts
blob: fc087d8cc5d8bffd2b072a91536c2bb836bb218a (plain) (blame)
1
2
3
4
5
6
import type { LayoutServerLoad } from './$types'

export const load: LayoutServerLoad = ({ locals: { locale, LL } }) => {
    // pass locale information from "server-context" to "shared server + client context"
    return { locale }
}