update to astro 4 plus new post

This commit is contained in:
2024-01-27 21:28:00 -05:00
parent beffc3335e
commit 29fc5be452
11 changed files with 77 additions and 33 deletions
+11 -10
View File
@@ -1,12 +1,13 @@
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"]
}
}
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@images/*": ["src/images/*"]
}
}
}