moved stuff out of app since it is used for routing

This commit is contained in:
2024-11-20 23:16:26 -05:00
parent d1bd68e720
commit fd08fd2886
136 changed files with 56 additions and 46 deletions

View File

@@ -21,26 +21,26 @@
],
"paths": {
"@/*": ["./*"],
"@/components/*": [
"components/*": [
"/src/app/components/*"
],
"@/layouts/*": [
"src/app/components/layouts/*"
"layouts/*": [
"/src/app/components/layouts/*"
],
"@/fragments/*": [
"src/app/Fragments/*"
"fragments/*": [
"/src/app/Fragments/*"
],
"@/lib/*": [
"src/app/lib/*"
"lib/*": [
"/src/app/lib/*"
],
"@/scss/*": [
"./scss/*"
"scss/*": [
"./src/scss/*"
],
"@/admin/*": [
"src/app/components/Admin/*"
"admin/*": [
"src/components/Admin/*"
],
"@/products/*": [
"src/app/components/Products/*"
"products/*": [
"src/components/Products/*"
]
},