## This package is deprecated see [@solidjs/start](https://www.npmjs.com/package/@solidjs/start)
npm install solid-start-cloudflare-workersAdapter for Solid apps that work on Cloudflare Workers.
This is very experimental; the adapter API isn't at all fleshed out, and things will definitely change.
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 settings.
Generate this file using wrangler from your project directory
``sh`
$ wrangler init
Then configure your sites build directory in the config file:
`toml``
main = "./dist/server.js"
[site]
bucket= "./dist/public"
More info on configuring a cloudflare worker site can be found here