Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
async headers() {
return [
{
source: "/:path*",
headers: [
// Signals AI crawlers that training, search indexing, and agentic
// use are all permitted (https://contentsignals.org). Set here
// rather than public/_headers because the Docker deploy doesn't
// read that file.
{
key: "Content-Signal",
value: "ai-train=yes, search=yes, ai-input=yes",
},
],
},
];
},
async redirects() {
return [
{
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,21 @@
"react-dom": "19.2.3",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"schema-dts": "^2.0.0",
"sonner": "^2.0.7",
"swr": "^2.3.8",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"unified": "^11.0.5",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/hast": "^3.0.5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
Expand Down
Loading
Loading