all repos — site @ 5296d541dfe301bae851dd3aa4bfbe272d3b59d6

source for my site, found at icyphox.sh

bin/serve.sh (view raw)

 1#!/usr/bin/env bash
 2
 3kill_vite() {
 4    trap SIGINT
 5    echo "cleaning up..."
 6    pkill vite
 7    exit
 8}
 9trap "kill_vite" INT
10
11vite serve &
12find pages/ static/ templates/ | entr vite build
13
14trap SIGINT