This commit is contained in:
2026-01-11 08:19:27 +01:00
parent f2732b36f2
commit bdd3e30f14
17 changed files with 3088 additions and 23 deletions

19
webapp/README.md Normal file
View File

@@ -0,0 +1,19 @@
# 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`.