Move to tailwind-build instead of CDNs

This commit is contained in:
Mukhtar Akere
2025-07-10 02:17:35 +01:00
parent c72867ff57
commit cf61546bec
32 changed files with 4149 additions and 20 deletions

View File

@@ -47,9 +47,15 @@ type RepairRequest struct {
AutoProcess bool `json:"autoProcess"`
}
//go:embed templates/* assets/*
//go:embed templates/*
var content embed.FS
//go:embed assets/build
var assetsEmbed embed.FS
//go:embed assets/images
var imagesEmbed embed.FS
type Web struct {
logger zerolog.Logger
cookie *sessions.CookieStore