summaryrefslogtreecommitdiff
path: root/examples/starlog
diff options
context:
space:
mode:
Diffstat (limited to 'examples/starlog')
-rw-r--r--examples/starlog/package.json2
-rw-r--r--examples/starlog/src/components/BaseHead.astro4
-rw-r--r--examples/starlog/tsconfig.json1
3 files changed, 4 insertions, 3 deletions
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 93f776317..d75504a5b 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^4.16.0",
+ "astro": "^5.0.0-beta.4",
"sass": "^1.79.4",
"sharp": "^0.33.3"
}
diff --git a/examples/starlog/src/components/BaseHead.astro b/examples/starlog/src/components/BaseHead.astro
index bb2c64ee8..34aff98fb 100644
--- a/examples/starlog/src/components/BaseHead.astro
+++ b/examples/starlog/src/components/BaseHead.astro
@@ -1,5 +1,5 @@
---
-import { ViewTransitions } from 'astro:transitions';
+import { ClientRouter } from 'astro:transitions';
import SEO, { type Props as SEOProps } from './SEO.astro';
import { SiteTitle, SiteDescription } from '../consts';
@@ -17,4 +17,4 @@ const { title = SiteTitle, name = SiteTitle, description = SiteDescription, ...s
rel="stylesheet"
/>
-<ViewTransitions />
+<ClientRouter />
diff --git a/examples/starlog/tsconfig.json b/examples/starlog/tsconfig.json
index da42df94e..8bf91d3bb 100644
--- a/examples/starlog/tsconfig.json
+++ b/examples/starlog/tsconfig.json
@@ -1,4 +1,5 @@
{
"extends": "astro/tsconfigs/strict",
+ "include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}