From b27c2984fdd195dd103a6caf54907f6ec67e7655 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Sun, 17 May 2026 13:08:08 -0700 Subject: [PATCH] include atlases/ in the public asset manifest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit resources/atlases/ wasn't in the manifest glob list, so the build skipped hashing/copying it into static/_assets/ and the deploy pipeline's R2 uploader had no keys for it — atlases 404'd on staging. --- src/server/PublicAssetManifest.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/PublicAssetManifest.ts b/src/server/PublicAssetManifest.ts index 0fc31b6a4..7e1f169f7 100644 --- a/src/server/PublicAssetManifest.ts +++ b/src/server/PublicAssetManifest.ts @@ -11,6 +11,7 @@ import { const HASHED_PUBLIC_ASSET_GLOBS = [ "changelog.md", "manifest.json", + "atlases/**/*", "cosmetics/**/*", "flags/**/*", "fonts/**/*",