Files
bsky-social-app/bskyweb/static.go
Oleksii Bulenok 8b7b5d8668 dockerfile builds
2026-09-07 13:57:56 +02:00

13 lines
320 B
Go

package bskyweb
import "embed"
// `all:` disables the default exclusion of files/dirs beginning with `_` or `.`,
// which is needed because Metro emits chunks like `__common-...js` and
// `__expo-metro-runtime-...js`.
//go:embed all:static
var StaticFS embed.FS
//go:embed embedr-static/*
var EmbedrStaticFS embed.FS