I have some feedback for Pages to
I have some feedback for Pages to Workers migration. If you're serving static assets without going through a worker first, you should remove the [assets]binding="" from wrangler.toml. It would be nice to see this in the migration guide, I would think more often than not, a Pages project will be migrated to a static worker + multiple workers, or by just compiling Page Functions into one worker.
name = 'sh8r-static'
[assets]
directory = "dist"
not_found_handling = "404-page"

4 Replies
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View
Well this won't deploy unless you remove that binding. Everything seems to work as expected, but as someone who just moved from Pages to Workers, a static worker is really the first example I want to see. Would've saved me some time while migrating :). I'm not sure how everyone is using Pages but this seems pretty common.

Also, I assume this configuration is the only way to get that special "static" tag on the worker? Not sure if its there when you include a main.js.
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View