diff --git a/examples/with-first-chunk-cache-ssr/src/app.tsx b/examples/with-first-chunk-cache-ssr/src/app.tsx index dc7977c9df..1ceb78f306 100644 --- a/examples/with-first-chunk-cache-ssr/src/app.tsx +++ b/examples/with-first-chunk-cache-ssr/src/app.tsx @@ -4,7 +4,4 @@ export default defineAppConfig({ app: { rootId: 'app', }, - cache: { - firstChunk: true, - }, }); diff --git a/examples/with-first-chunk-cache-ssr/src/document.tsx b/examples/with-first-chunk-cache-ssr/src/document.tsx index 195d21a7f1..0df14e14df 100644 --- a/examples/with-first-chunk-cache-ssr/src/document.tsx +++ b/examples/with-first-chunk-cache-ssr/src/document.tsx @@ -1,4 +1,4 @@ -import { Meta, Title, Links, Main, Scripts } from 'ice'; +import { Meta, Title, Links, Main, Scripts, FirstChunkCache } from 'ice'; function Document() { return ( @@ -13,6 +13,7 @@ function Document() {
+