Skip to content

Commit 41c97c2

Browse files
committed
Build fixes
1 parent 95d4d98 commit 41c97c2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

apps/docs/app/[lang]/rss.xml/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const GET = async (
2727
title: page.data.title,
2828
description: page.data.description,
2929
link: `${baseUrl}${page.url}`,
30-
date: new Date(page.data.lastModified ?? new Date()),
30+
date: new Date(),
3131
author: [
3232
{
3333
name: "Vercel",

apps/docs/source.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
frontmatterSchema,
66
metaSchema,
77
} from "fumadocs-mdx/config";
8-
import lastModified from "fumadocs-mdx/plugins/last-modified";
98

109
// You can customise Zod schemas for frontmatter and `meta.json` here
1110
// see https://fumadocs.dev/docs/mdx/collections
@@ -26,5 +25,4 @@ export default defineConfig({
2625
mdxOptions: {
2726
remarkPlugins: [remarkMdxMermaid],
2827
},
29-
plugins: [lastModified()],
3028
});

turbo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://turborepo.com/schema.json",
33
"ui": "tui",
4+
"envMode": "loose",
45
"tasks": {
56
"build": {
67
"dependsOn": ["^build"],

0 commit comments

Comments
 (0)