summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRichard-Qin-X <richard.qin.001@gmail.com>2026-09-12 23:27:49 +0800
committerRichard-Qin-X <richard.qin.001@gmail.com>2026-09-12 23:27:49 +0800
commit73ee8192413cacdda338b1f412f5c68a4d059751 (patch)
tree66c4ea27cb1dadf2edd86a4d28533e25f4e39725 /Makefile
parent3e0ae9c5135ce4cbf3f87eea79c5533e236befb6 (diff)
Make base URL configurable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8356ec6..e6b1d33 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,15 @@
HUGO ?= hugo
PORT ?= 1314
+BASE_URL ?= http://localhost:1314/
.PHONY: build serve clean
build: clean
- $(HUGO)
+ $(HUGO) --baseURL "$(BASE_URL)"
./scripts/publish-raw
serve: build
- $(HUGO) server --disableFastRender --disableLiveReload --port $(PORT)
+ $(HUGO) server --disableFastRender --disableLiveReload --port $(PORT) --baseURL "http://localhost:$(PORT)/"
clean:
$(RM) -r public resources .hugo_build.lock