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