You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
source ~/.nvm/nvm.sh
|
|
nvm use 18
|
|
if [ "$1" == "build" ]; then
|
|
npx next build
|
|
fi
|
|
npx next start -p 8910
|