my website at https://anirudh.fi
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

bin/build.sh: check if VITE_ENV is production

+7 -1
+7 -1
bin/build.sh
··· 1 1 #!/bin/sh 2 2 3 + 3 4 rm -rf go-vite 4 5 git clone https://github.com/icyphox/go-vite 5 6 cd go-vite && make && cd .. 6 7 mkdir build 7 - go-vite/vite build --drafts 8 + 9 + if [ "$VITE_ENV" = "production" ]; then 10 + go-vite/vite build 11 + else 12 + go-vite/vite build --drafts 13 + fi