Restructure with dark/light mode toggle component

This commit is contained in:
2024-03-10 00:45:07 -06:00
parent ac35c6e647
commit fa536d92d9
14 changed files with 651 additions and 124 deletions

View File

@@ -1,6 +1,23 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true
"strictNullChecks": true,
"baseUrl": "/home/xevion/projects/utsa-handbook",
"paths": {
"@components/*": [
"./src/components/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@pages/*": [
"./src/pages/*"
],
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}