A small static page that lists pizza-style items, built with React 18 and Vite. JSX lives in src/; styling is in style.css.
- Node.js — use the version in
[.nvmrc](./.nvmrc)(e.g.nvm use).
npm installStart the Vite dev server (hot reload, default port from Vite—often http://localhost:5173):
npm run devProduce a production bundle in dist/:
npm run buildPreview the production build locally:
npm run preview| Command | Description |
|---|---|
npm run dev |
Vite dev server |
npm run build |
Production build to dist/ |
npm run preview |
Serve the dist/ output locally |
npm run lint |
Run ESLint on the project |
npm run format |
Format src JS/CSS/HTML with Prettier |
index.html— page shell; Vite loadssrc/App.jsxsrc/App.jsx— React app (JSX)style.css— site styles
Scratch-pad stuff (Vite proxy, API, whatever else): notes.md.