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