pocketbase/ui/embed.go

14 lines
278 B
Go
Raw Normal View History

2024-09-30 00:23:19 +08:00
// Package ui handles the PocketBase Superuser frontend embedding.
2022-07-07 05:19:05 +08:00
package ui
import (
"embed"
2024-09-30 00:23:19 +08:00
"io/fs"
2022-07-07 05:19:05 +08:00
)
//go:embed all:dist
var distDir embed.FS
// DistDirFS contains the embedded dist directory files (without the "dist" prefix)
2024-09-30 00:23:19 +08:00
var DistDirFS, _ = fs.Sub(distDir, "dist")