添加seo功能

This commit is contained in:
Eamon-meng
2026-05-15 16:56:05 +08:00
parent 670961c17d
commit fde097c601
23 changed files with 935 additions and 268 deletions

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -13,13 +17,16 @@
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"allowArbitraryExtensions": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [
@@ -30,5 +37,7 @@
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}
"exclude": [
"node_modules"
]
}