What counts as a static website?
A static website is a collection of browser-ready files. It can contain multiple HTML pages, CSS, images, fonts, JSON, and JavaScript that runs in the visitor's browser. It does not require server code to generate a response for each request.
Vanilla HTML sites work directly. React, Vue, Svelte, and other projects can also work after you upload their compiled output directory rather than the source project and package files.
