//go:build !desktop package main import "embed" // assets is an empty FS for the default (non-desktop) build. The real embedded // SPA lives in assets_embed.go behind the `desktop` build tag, because // frontend/dist is a gitignored artifact that only exists after `make desktop` // copies web/dist/* into it. This stub lets `go build ./...` compile cleanly on // a fresh checkout without the frontend built. var assets embed.FS