hypnagaga/bin/mods/rngs-io/templates/+layout.ts
Ben Aultowski 04877468cf initial
2026-02-27 11:58:02 -05:00

9 lines
257 B
TypeScript

export const prerender = true;
export const trailingSlash = 'always';
import type { LayoutLoad } from './$types.js';
import enContent from '$locales/en/content.json';
export const load: LayoutLoad = async () => {
return { content: enContent.story };
};