diff --git a/apps/astro/package.json b/apps/astro/package.json index 90e0b83..dcc9dde 100644 --- a/apps/astro/package.json +++ b/apps/astro/package.json @@ -11,6 +11,7 @@ "start": "astro dev" }, "dependencies": { + "@astrojs/ts-plugin": "^1.10.4", "@vercel/analytics": "workspace:*", "astro": "latest" }, diff --git a/apps/astro/src/components/BaseHead.astro b/apps/astro/src/components/BaseHead.astro deleted file mode 100644 index 7bfda32..0000000 --- a/apps/astro/src/components/BaseHead.astro +++ /dev/null @@ -1,4 +0,0 @@ ---- -import Analytics from '@vercel/analytics/astro'; ---- - diff --git a/apps/astro/src/layouts/Base.astro b/apps/astro/src/layouts/Base.astro index c506df1..c68e148 100644 --- a/apps/astro/src/layouts/Base.astro +++ b/apps/astro/src/layouts/Base.astro @@ -3,6 +3,14 @@ import Analytics from '@vercel/analytics/astro'; const { title } = Astro.props; --- + + + diff --git a/apps/astro/tsconfig.json b/apps/astro/tsconfig.json index e51e062..0a31008 100644 --- a/apps/astro/tsconfig.json +++ b/apps/astro/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "astro/tsconfigs/base", "compilerOptions": { - "strictNullChecks": true + "strictNullChecks": true, + "plugins": [{ "name": "@astrojs/ts-plugin" }] } } diff --git a/apps/nuxt/app.vue b/apps/nuxt/app.vue index f8eacfa..b56c21c 100644 --- a/apps/nuxt/app.vue +++ b/apps/nuxt/app.vue @@ -1,4 +1,14 @@ + +