From 319b7bdb0c612f4fb703297729be58c0fa5995fe Mon Sep 17 00:00:00 2001 From: Buddy Date: Mon, 8 Jun 2026 22:55:52 -0700 Subject: [PATCH] docs: remove vite mentions from README and CLAUDE.md --- CLAUDE.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index df1a261..17fc165 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,7 +10,7 @@ npm run lint # ESLint over src/**/*.{ts,js} npm run format # Prettier formatting ``` -There are no tests in this project. To preview components locally, open `index.html` in a browser with a dev server that supports TypeScript (e.g. `npx vite`). +There are no tests in this project. To preview components locally, open `index.html` in a browser with any static-file server. ## Architecture diff --git a/README.md b/README.md index 70d62ae..9ea1747 100644 --- a/README.md +++ b/README.md @@ -403,5 +403,5 @@ The following attributes apply to ``, ``, npm run build # type-check + emit .d.ts via tsc, then bundle to dist/index.js via esbuild npm run lint # ESLint npm run format # Prettier -npx vite # open index.html for a live demo +# serve the project root with any static-file server and open index.html ```