Build fixes

This commit is contained in:
Hayden Bleasel
2026-01-20 21:09:56 -08:00
parent 95d4d98d4c
commit 41c97c2852
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export const GET = async (
title: page.data.title,
description: page.data.description,
link: `${baseUrl}${page.url}`,
date: new Date(page.data.lastModified ?? new Date()),
date: new Date(),
author: [
{
name: "Vercel",
-2
View File
@@ -5,7 +5,6 @@ import {
frontmatterSchema,
metaSchema,
} from "fumadocs-mdx/config";
import lastModified from "fumadocs-mdx/plugins/last-modified";
// You can customise Zod schemas for frontmatter and `meta.json` here
// see https://fumadocs.dev/docs/mdx/collections
@@ -26,5 +25,4 @@ export default defineConfig({
mdxOptions: {
remarkPlugins: [remarkMdxMermaid],
},
plugins: [lastModified()],
});
+1
View File
@@ -1,6 +1,7 @@
{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"envMode": "loose",
"tasks": {
"build": {
"dependsOn": ["^build"],