A simple word spelling app with voice selection, language options, and dark mode.
Install dependencies:
bun install
# or
npm installStart the dev server with hot reload:
bun run dev
# or
npm run devThis will:
- Start Vite dev server on http://localhost:3000
- Enable hot module replacement (HMR) - changes reflect instantly
- Open the browser automatically
Build for production:
bun run build
# or
npm run buildOutputs to dist/ folder.
Preview the production build locally:
bun run preview
# or
npm run previewDeploy to GitHub Pages:
bun run deploy
# or
npm run deployThis will:
- Build the project for production
- Deploy the
dist/folder to thegh-pagesbranch - Make the site available at
https://donpui.github.io/spell-it/
Note: Make sure GitHub Pages is enabled in your repository settings and set to use the gh-pages branch.