Publishing
npx seemore build # static export to dist/ for any hostThe result is a dist/ folder of plain web files: drop it on Netlify, Surge, Cloudflare Pages or GitHub Pages, or hand it to any web host. Every page is prerendered to its own index.html, next to a 404.html that every static host honours. On top of that, the small conventions individual hosts look for — _redirects for Netlify and Cloudflare Pages, 200.html for Surge, .nojekyll for GitHub Pages — are written for you.
Tip
Project sites on GitHub Pages live under username.github.io/my-repo/, not the root, so set base once: base: '/my-repo/' (or --base /my-repo/ on the CLI). Building under GitHub Actions without it set prints the exact line to add.
This site is built exactly this way — see its seemore.config.ts and the features page for what publishing gets you by default.