Files
minhtran_dev/src/data/posts.ts
2025-01-23 11:16:33 -05:00

9 lines
184 B
TypeScript

// @ts-expect-error
import Posts from "./posts.json";
import type { Post } from "~/types";
export const posts: Post[] = Posts.map((p: Post) => ({
...p,
date: new Date(p.date),
}));