fix: json feeds

This commit is contained in:
Cory Dransfeldt 2024-11-17 20:44:19 -08:00
parent cbdc98274e
commit 012a6b88c7
No known key found for this signature in database
5 changed files with 35 additions and 10 deletions

View file

@ -4,7 +4,7 @@ import { fetchActivity } from "@utils/data/activity.js";
export const prerender = true;
export async function getStaticPaths() {
export async function GET() {
const globals = await fetchGlobals();
const activity = await fetchActivity();
@ -19,5 +19,10 @@ export async function getStaticPaths() {
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, feed);
return [];
return new Response(feed, {
status: 200,
headers: {
"Content-Type": "application/json",
},
});
}

View file

@ -4,7 +4,7 @@ import { fetchBooks } from "@utils/data/books.js";
export const prerender = true;
export async function getStaticPaths() {
export async function GET() {
const globals = await fetchGlobals();
const books = await fetchBooks();
@ -19,5 +19,10 @@ export async function getStaticPaths() {
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, feed);
return [];
return new Response(feed, {
status: 200,
headers: {
"Content-Type": "application/json",
},
});
}

View file

@ -4,7 +4,7 @@ import { fetchLinks } from "@utils/data/links.js";
export const prerender = true;
export async function getStaticPaths() {
export async function GET() {
const globals = await fetchGlobals();
const links = await fetchLinks();
@ -19,5 +19,10 @@ export async function getStaticPaths() {
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, feed);
return [];
return new Response(feed, {
status: 200,
headers: {
"Content-Type": "application/json",
},
});
}

View file

@ -4,7 +4,7 @@ import { fetchMovies } from '@utils/data/movies';
export const prerender = true;
export async function getStaticPaths() {
export async function GET() {
const globals = await fetchGlobals();
const movies = await fetchMovies();
@ -19,5 +19,10 @@ export async function getStaticPaths() {
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, feed);
return [];
return new Response(feed, {
status: 200,
headers: {
"Content-Type": "application/json",
},
});
}

View file

@ -4,7 +4,7 @@ import { fetchAllPosts } from "@utils/data/posts.js";
export const prerender = true;
export async function getStaticPaths() {
export async function GET() {
const globals = await fetchGlobals();
const posts = await fetchAllPosts();
@ -19,5 +19,10 @@ export async function getStaticPaths() {
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, feed);
return [];
return new Response(feed, {
status: 200,
headers: {
"Content-Type": "application/json",
},
});
}