2ae59d207499170feb8763ecc273b706f037464f
The config/public/ directory (fonts, images, leaflet icons, favicons) is Modern.js's publicDir convention — copied into dist/standalone/public/ at build time. Two pre-existing gaps caused this to break on the deployed SSR image and any fresh sync: - scripts/sync-to-flights-front.sh did not copy config/ to the target repo, so the flights-front tree was missing /assets/** entirely. - Dockerfile.react only copied src/, skipping config/; pnpm build:standalone ran without a publicDir source. Result was that every /assets/** URL served the SSR HTML index with Content-Type: text/html, producing OTS font-parse errors (sfntVersion 1008821359 == '<!DT') and silently broken images. Fix mirrors what was applied ad-hoc in Aeroflot.Flights.Front; this makes future syncs and Docker builds carry the assets automatically.
Description
No description provided
Languages
TypeScript
62.7%
HTML
23.6%
SCSS
11%
JavaScript
1.1%
C#
0.9%
Other
0.6%