I am using Cloudflare Workers Sites however I have a file called config.yml
that needs to keep that name when is sent to Cloudflare Workers via wrangler publish
.
Currently when the file is uploaded to Workers it is coming with names like: config.4bced1d838.yml
. Unfortunately, this file is being loaded from another Javascript file and I cannot modify it whatosover.
A simple solution would be to just keep the original file name (config.yml
). Is there any straightforward solution for this?
Thanks.