aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/xesite/main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/xesite/main.go b/cmd/xesite/main.go
index ff4c92e..daf831e 100644
--- a/cmd/xesite/main.go
+++ b/cmd/xesite/main.go
@@ -109,6 +109,10 @@ func main() {
http.Redirect(w, r, "/blog/xn--ts9h/", http.StatusMovedPermanently)
})
+ mux.HandleFunc("/static/manifest.json", func(w http.ResponseWriter, r *http.Request) {
+ http.Redirect(w, r, "/static/site.webmanifest", http.StatusMovedPermanently)
+ })
+
if *devel {
mux.HandleFunc("/.within/hook/github", func(w http.ResponseWriter, r *http.Request) {
if err := fs.Update(r.Context()); err != nil {