fix: Add ldflags to run Without it go run can't set the proper slug for the css file.
1diff --git a/Makefile b/Makefile 2index da2f09103e43dd1aef25f2f284ea1f806a3f0598..80aaf2b8a9c0462465409b4d790f3da595ac6812 100644 3--- a/Makefile 4+++ b/Makefile 5@@ -24,7 +24,7 @@ install: 6 install -Dm755 $(BIN) $(BINDIR)/$(BIN) 7 8 run: sass tmpl 9- go run . 10+ go run -ldflags=$(LDFLAGS) . 11 12 test: 13 go test -v --tags=unit ./...