chore(tsconfig): update paths to use ~ instead of @

This commit is contained in:
Shintaro Jokagi
2025-05-12 23:43:11 +12:00
parent 37598bb645
commit 79f2381023
27 changed files with 261 additions and 223 deletions

View File

@@ -1,9 +1,9 @@
---
import Button from '@/components/Button.astro'
import Description from '@/components/Description.astro'
import Layout from '@/layouts/Layout.astro'
import { getLocale, getUI } from '@/utils/i18n'
export { getStaticPaths } from '@/utils/i18n'
import Button from '~/components/Button.astro'
import Description from '~/components/Description.astro'
import Layout from '~/layouts/Layout.astro'
import { getLocale, getUI } from '~/utils/i18n'
export { getStaticPaths } from '~/utils/i18n'
const locale = getLocale(Astro)