Spaces:
Running
Running
File size: 387 Bytes
db39944 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { error } from '@sveltejs/kit'
export async function load({ params }) {
try {
const snippet = await import(`../../snippets/${params.slug}.md`)
if (!snippet) {
throw error(404, `Could not find snippet ${params.slug}`)
}
return {
snippet: snippet.metadata,
content: snippet.default
}
} catch {
throw error(404, `Could not find snippet ${params.slug}`)
}
}
|