diff --git a/main.go b/main.go index ae98d5f..1b7d976 100644 --- a/main.go +++ b/main.go @@ -593,6 +593,10 @@ func main() { return c.SendFile("templates/index.html") }) + app.Get("/robots.txt", func(c *fiber.Ctx) error { + return c.SendFile("templates/robots.txt") + }) + app.Get("/artists.html", func(c *fiber.Ctx) error { return c.SendFile(HTMLFilename) }) diff --git a/frontend/artistgrid-sheets-frontend/public/robots.txt b/templates/robots.txt similarity index 100% rename from frontend/artistgrid-sheets-frontend/public/robots.txt rename to templates/robots.txt