#!/usr/bin/env zsh # Eryn Wells if [[ "$1" == "production" ]]; then hugo server \ --buildFuture \ --noHTTPCache \ --enableGitInfo \ --environment production else hugo server --buildDrafts --buildFuture --noHTTPCache --enableGitInfo fi