aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/+layout.server.ts
blob: 0eef9d3af1236d34fce7d3ada5916b421ed28b6b (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 };
};