diff --git a/astro.config.mjs b/astro.config.mjs index a2582cb..d3ac26f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -12,9 +12,6 @@ export default defineConfig({ mode: 'middleware', }), compressHTML: true, - experimental: { - viewTransitions: true - }, integrations: [ tailwind({ config: { diff --git a/src/app/components/header.astro b/src/app/components/header.astro index 0488e1d..6db15ef 100644 --- a/src/app/components/header.astro +++ b/src/app/components/header.astro @@ -10,7 +10,7 @@ const { pathname } = new URL(Astro.request.url)
diff --git a/src/app/styles/tailwind.css b/src/app/styles/tailwind.css index e8de086..f7a0bc3 100644 --- a/src/app/styles/tailwind.css +++ b/src/app/styles/tailwind.css @@ -23,3 +23,7 @@ section a { .ease-header { transition-timing-function: cubic-bezier(1, 0, 0, 0.81); } + +body { + position: relative; +} diff --git a/tsconfig.json b/tsconfig.json index 8948e2d..363a34c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,11 +2,11 @@ "extends": "astro/tsconfigs/strict", "compilerOptions": { "forceConsistentCasingInFileNames": false, - "baseUrl": ".", + "baseUrl": "src", "paths": { - "$modules/*": ["src/modules/*"], - "$app/*": ["src/app/*"], - "$core/*": ["src/core/*"] + "$modules/*": ["modules/*"], + "$app/*": ["app/*"], + "$core/*": ["core/*"] } }, "include": ["src"]