From d6dc2eb954b83a9f2d22a2000b822610bc3feaf1 Mon Sep 17 00:00:00 2001 From: Chen-I Lim Date: Thu, 7 Jan 2021 15:03:33 -0800 Subject: [PATCH] Website BASE_URL param --- website/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/Makefile b/website/Makefile index 3f9747717..0c37eea3f 100644 --- a/website/Makefile +++ b/website/Makefile @@ -1,7 +1,10 @@ + +BASE_URL?=http://www.mattergoals.com + .PHONY: dist dist: rm -rf ./dist - hugo -s site --destination ../dist/html + hugo -s site --destination ../dist/html -b$(BASE_URL) .PHONY: run run: