Cloudflare Pages
Full-stack
The vike-cloudflare package enables zero-configuration deployment to Cloudflare Pages.
It will deploy prerendered routes as static files, and dynamic routes as Pages Functions.
Instead of using
vike-cloudflare
you can manally integrate Cloudflare Pages yourself, see Deploy > Cloudflare Workers > Cloudflare Pages.
Without a server
With a server
vike-cloudflare
currently supports Hono and HatTip
HatTip also requires the installation of
@hattip/adapter-cloudflare-workers
Static
By pre-rendering your pages, you can remove the need for a production server. You can then deploy your app to any static host, such as Cloudflare Pages.
Static hosts always expect one
.html
file per URL. This means you need to pre-render all your pages, regardless of render mode. For example, if you have SPA pages, then you also need to pre-render them which will generate.html
files with an empty<body>
.
You can choose between following deploy strategies:
- Build locally and upload
dist/client/
to Cloudflare Pages. - Let a GitHub action build and upload
dist/client/
to Cloudflare Pages. - Let Cloudflare Pages build your app.
The
$ vite build
command generatesdist/client/
containing all static assets.
If you let Cloudflare Pages build your app, note that Vike requires Node.js >=12.19.0
and you may need to change Cloudflare Pages' default Node.js version.
You can try out your production build locally with $ vite preview
, or any other tool such as $ serve dist/client/
.
If you don't deploy your app at your domain root
https://my-domain.com
, but athttps://my-domain.com/somewhere/nested
instead, then change your app's Base URL.
Examples
Example of using Vike with Cloudflare Pages with a Cloudflare worker:
- 2024.06 GitHub >
vikejs/vike-cloudflare
-vike-cloudflare
demos, with support for Plain Vike and Servers like Hono. - 2024.01 GitHub >
travis-r6s/vike-cf-pages
- Advanced demo showcasing a lot of integrations such as REST, tRPC, GraphQL, Sentry, and Thumbprint. -
2024.01 GitHub >
osseonews/vike-app-cfp
-
2022.04 GitHub >
Immortalin/vite-plugin-ssr-cloudflare-pages-demo
vite-plugin-ssr was the previous name of Vike.