9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/frontend: Launch the frontend asset server locally.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../slices/main/assets/rental"
|
|
|
|
yarn run dev |