refactor: Migrate CV/resume PDFs to external hosting and update Next.js build configuration.

This commit is contained in:
2025-12-01 01:01:43 -05:00
parent 4f1493d7be
commit 86c9bde23e
7 changed files with 29 additions and 12 deletions

View File

@@ -13,11 +13,15 @@
"noUncheckedIndexedAccess": true,
"checkJs": true,
/* Bundled projects */
"lib": ["dom", "dom.iterable", "ES2022"],
"lib": [
"dom",
"dom.iterable",
"ES2022"
],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve", // or "react" for older versions
"jsx": "react-jsx", // or "react" for older versions
"plugins": [
{
"name": "next"
@@ -27,7 +31,9 @@
/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
}
},
"include": [
@@ -37,7 +43,12 @@
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts"
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "drizzle.config.ts", "scripts/**/*"]
"exclude": [
"node_modules",
"drizzle.config.ts",
"scripts/**/*"
]
}