Final adjustments

This commit is contained in:
2025-11-01 12:42:40 +01:00
parent 416deaa772
commit 53caca383e
3 changed files with 35 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
BASE_URL := https://agres.online/
DEST := public
HUGO := hugo
build:
cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL)
serve:
cd blog && hugo serve -D --cleanDestinationDir
clean:
cd blog && rm -rf ./public/*
.PHONY: build serve clean