mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 08:43:40 +00:00
10 lines
106 B
Makefile
10 lines
106 B
Makefile
build: clean
|
|
npm ci
|
|
hugo --minify
|
|
|
|
clean:
|
|
rm -rf public/
|
|
|
|
server: clean
|
|
hugo server --buildDrafts
|