adapter-cloudflare-workers
SvelteKit adapter that creates a Cloudflare Workers site using a function for dynamic server rendering.
This is very experimental; the adapter API isn't at all fleshed out, and things will definitely change.
Configuration
This adapter expects to find a wrangler.toml file in the project root. It will determine where to write static assets and the worker based on the site.bucket
and site.entry-point
settings.
Generate this file using wrangler
from your project directory
$ wrangler init --site my-site-name
Then configure your sites build directory in the config file:
[site]
bucket = "./build"
entry-point = "./workers-site"
It's recommended that you add the build
and workers-site
folders (or whichever other folders you specify) to your .gitignore
.
More info on configuring a cloudflare worker site can be found here