Files
authentik/web/static.go
Teffen Ellis 04a8357708 web: Automatic reload during server start up. (#16030)
* web: Automatic reload during server start up.

* web: Flesh out reload behavior.

* web: Flesh out wave boi.
2025-08-26 15:13:22 +00:00

17 lines
228 B
Go

package web
import (
_ "embed"
"net/http"
)
//go:embed robots.txt
var RobotsTxt []byte
//go:embed security.txt
var SecurityTxt []byte
var StaticDir = http.Dir("./web/dist/")
var StaticHandler = http.FileServer(StaticDir)