d-u-w-eleventy-example/Justfile

13 lines
162 B
Plaintext

@default:
just --list
# run live preview server
serve:
npx eleventy --serve
# build to ./_site
build:
rm -rf _site/
ELEVENTY_ENVIRONMENT=prod npx eleventy