10 lines
129 B
Bash
Executable File
10 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
echo "=> Set API origin"
|
|
export VITE_API_ORIGIN="my.nebulon.space"
|
|
|
|
echo "=> Run vite locally"
|
|
npm run dev
|