chore:migrate dev toolchain to Vite+`
Description
This merge request migrates the project's development workflow from Vite to Vite+ (vp) to adopt the unified toolchain by VoidZero. It resolves command resolution issues by installing the vite-plus dependency locally and configuring the correct development scripts.
Changes
-
Package Configuration (package.json):
- Added
vite-plus(^0.1.22) todevDependencies. - Updated the
"dev"script to runvp dev(the Vite+ development server command).
- Added
- Lockfile Update (package-lock.json):
Verification Plan
- Pull the changes locally:
git pull origin main - Install new dependencies:
npm install - Run the development server to verify it compiles and runs correctly:
npm run dev

