20 lines
505 B
Markdown
20 lines
505 B
Markdown
# RadioCast Webapp (Vite)
|
|
|
|
This folder contains a minimal Vite scaffold that loads the existing app code
|
|
from the workspace `src` folder. It is intentionally lightweight and keeps the
|
|
original project files unchanged.
|
|
|
|
Quick start:
|
|
|
|
```powershell
|
|
cd webapp
|
|
npm install
|
|
npm run dev
|
|
# open http://localhost:5173
|
|
```
|
|
|
|
Notes:
|
|
- The Vite config allows reading files from the parent workspace so the
|
|
existing `src/main.js` is reused.
|
|
- You can `npm run build` here to produce a static build in `webapp/dist`.
|