8 lines
123 B
Batchfile
8 lines
123 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
if not exist node_modules (
|
|
call npm ci
|
|
if errorlevel 1 exit /b 1
|
|
)
|
|
call npm run dev -- --open
|