New: Cookbooks and AI ExplanationsStep-by-Step recipes to solve problems connected to Roadmaps and Cheat Sheets. Need more details? Use AI buttons for structured and simple explanations with concrete examples throughout the whole platform.Take a look
You have an index.html and an about.html. Only index.html ever lands in the shipped build output.
What you'll have at the end
A shipped build that includes both index.html and about.html as real pages, linked to each other, sharing one copy of their common code instead of two.
You need
A Vite project already running in dev mode, with an index.html at its root and a second static HTML page, such as an about page, that already opens correctly by visiting its own address while the dev server runs.
Not covered
Turning the site into one script-driven app with client-side routing; each page here stays a genuine, separate document the server hands out as its own file.
Checked 22 Aug 2026
Part of the Vite cookbook