Just getting started with cloudflare. I’m using wrangler to publish the site to my subdomain. I set up my worker to point to my create-react-app but it seems to load but blank because it’s getting 404 on the assets.
Here is my wrangler.toml
account_id = “my-account-id”
name = “some-app”
type = “webpack”
workers_dev = false
route = "https://subdomain.example.com"
zone_id = "my-zone-id"
[site]
bucket = "./build"
entry-point = "workers-site"
What am I doing wrong?