refactor: remove draft filtering from public routes
This commit is contained in:
parent
aa349ed7c9
commit
828d637c63
6 changed files with 6 additions and 6 deletions
|
|
@ -9,7 +9,7 @@ const SUBDOMAINS = [
|
|||
|
||||
export async function GET(context: APIContext) {
|
||||
const site = context.site?.origin ?? 'https://wynne.rs';
|
||||
const posts = await getCollection('md', ({ data }) => data.draft !== true);
|
||||
const posts = await getCollection('md');
|
||||
const txtFiles = getTxtFileNames();
|
||||
|
||||
const urls = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue