9 lines
173 B
Batchfile
9 lines
173 B
Batchfile
@echo off
|
|
cd /d "%~dp0frontend"
|
|
if not exist node_modules (
|
|
echo Installing npm dependencies...
|
|
call npm install
|
|
)
|
|
echo Starting Vite dev server...
|
|
call npm run dev
|