Files
2025-02-16 23:53:14 +08:00

15 lines
234 B
Go

package index
import (
"github.com/kataras/iris/v12"
)
func InitIndex(app *iris.Application) {
app.Use(cors)
app.HandleDir("/", GetWebFS(), iris.DirOptions{
IndexName: "/index.html",
Compress: true,
SPA: true,
})
}