Hi. I feel like I've done really well getting as far as I have, but I'm still missing a detail or three. The error I receive is in the title.
I have a Git repo I'm deploying from that contains these files (a basic static html site)::
index.html
style.css
README.md
My Build config looks like this::
Build command: exit 0
Deploy command: npx wrangler deploy ./index.html
Version command: npx wrangler versions upload
Root directory: ./
I've been mucking with the paths for "Deploy command" and "Root dir" but would rather know that I'm doing things properly than guessing at what might work.
It looks like I need some combination of a wrangler.toml file and index.js, but I'm not sure where they go (in the top folder with html & css?) or what the contents should actually be. I don't know if an assets directory is needed or if I need to use template files. Right now I'm posting a single page site but want to learn to do it for a multi-page site (couple dozen pages) too and it would be disappointing if I have to edit all pages into templates.
Tips appreciated!!