This commit is contained in:
Morten Olsen
2024-04-19 20:51:52 +02:00
committed by Morten Olsen
parent 98e39a54cc
commit ee37ac9d90
51 changed files with 604 additions and 798 deletions

View File

@@ -1,6 +1,6 @@
import { data } from '@/data/data.ts';
import { data } from '@/data/data.ts'
export async function GET() {
const resume = await data.getJsonResume();
return new Response(JSON.stringify(resume, null, 2));
const resume = await data.getJsonResume()
return new Response(JSON.stringify(resume, null, 2))
}