Personal Site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add root path alias

+6 -1
+6 -1
tsconfig.json
··· 1 1 { 2 2 "extends": "astro/tsconfigs/strict", 3 3 "include": [".astro/types.d.ts", "**/*"], 4 - "exclude": ["dist"] 4 + "exclude": ["dist"], 5 + "compilerOptions": { 6 + "paths": { 7 + "/*": ["./src/*"] 8 + } 9 + } 5 10 }