merge v0.23.0-rc changes

This commit is contained in:
Gani Georgiev
2024-09-29 19:23:19 +03:00
parent ad92992324
commit 844f18cac3
753 changed files with 85141 additions and 63396 deletions
+3 -4
View File
@@ -1,14 +1,13 @@
// Package ui handles the PocketBase Admin frontend embedding.
// Package ui handles the PocketBase Superuser frontend embedding.
package ui
import (
"embed"
"github.com/labstack/echo/v5"
"io/fs"
)
//go:embed all:dist
var distDir embed.FS
// DistDirFS contains the embedded dist directory files (without the "dist" prefix)
var DistDirFS = echo.MustSubFS(distDir, "dist")
var DistDirFS, _ = fs.Sub(distDir, "dist")