mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 20:49:29 +08:00
6 lines
223 B
TypeScript
6 lines
223 B
TypeScript
import type { RequestHandler } from './$types'
|
|
import { json } from '@sveltejs/kit'
|
|
import { genPosts } from '$lib/utils/posts'
|
|
|
|
export const prerender = true
|
|
export const GET: RequestHandler = async () => json(genPosts())
|