add/serve .well-known files (both files)

zio/stable
Jake Gold 2023-05-26 17:59:25 -07:00
parent c98b65f6a9
commit e58fe2e204
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ func serve(cctx *cli.Context) error {
// static files
e.GET("/robots.txt", echo.WrapHandler(staticHandler))
e.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", staticHandler)))
e.GET("/.well-known/assetlinks.json", echo.WrapHandler(staticHandler))
e.GET("/.well-known/*", echo.WrapHandler(staticHandler))
// home
e.GET("/", server.WebHome)