You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/sites/svelte.dev/src/routes/content.json/+server.js

11 lines
181 B

import { content } from './content.server';
import { json } from '@sveltejs/kit';
export const prerender = true;
export function GET() {
return json({
blocks: content()
});
}