fixed aliasing path. (#2028)

This commit is contained in:
Vin E. R. Yap 2021-11-30 03:53:16 +09:00 committed by GitHub
parent fe9c8952a6
commit bc7ee62615
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ In Astro v0.21, import aliases can be added from `tsconfig.json` or `jsconfig.js
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"]
"@/components/*": ["src/components/*"]
}
}
}