6 lines
89 B
Bash
6 lines
89 B
Bash
#!/usr/bin/env bash
|
|
if [ ! -d 'node_modules' ]; then
|
|
npm ci
|
|
fi
|
|
npm run serve -- --host
|