fix build

This commit is contained in:
2023-02-21 20:22:09 +01:00
parent 6969858727
commit 3b80a0602f
6 changed files with 16 additions and 15 deletions

View File

@ -8,7 +8,6 @@ import type { RequestHandler } from './$types'
export const prerender = true
export const GET = (async ({ params }) => {
console.log(params);
const handledParams = params.params === 'index' ? '' : params.params
const { page = 1, pageSize = 7, ...filters } = parseParams(handledParams)
const paginationParams = getDropTakeFromPageParams(

View File

@ -1,5 +1,5 @@
import { getBlogListing } from '$lib/articleContent/articleContentListing'
import { Feed } from 'feed'
import { getBlogListing } from './blog/content'
export async function getFeed() {
const feed = new Feed({