feat: add more static generated routes to test

This commit is contained in:
Youwen Wu 2024-04-07 15:11:37 -07:00
parent d35f58b3bc
commit a3c61c2ed4
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -1,5 +1,5 @@
import type { EntryGenerator } from './$types'; import type { EntryGenerator } from './$types';
export const entries: EntryGenerator = () => { export const entries: EntryGenerator = () => {
return [{ slug: '2024/test-post' }]; return [{ slug: '2024/test-post' }, { slug: '2024/another-post' }];
}; };