All static assets can be served via CDN which will take load off the server to just do API things.
Basically this will mean we still serve the index.html file from the app, but all static assets including the app bundle are served via CDN. Better caching, better distribution.
Further...
Static assets, static HTML via s3 or similar. Seperate into different environments on s3.
Eventually; no HTML lives in s3 or similar; CDN caches html, everything else served as assets.
All static assets can be served via CDN which will take load off the server to just do API things.
Basically this will mean we still serve the
index.htmlfile from the app, but all static assets including the app bundle are served via CDN. Better caching, better distribution.Further...
Static assets, static HTML via s3 or similar. Seperate into different environments on s3.
Eventually; no HTML lives in s3 or similar; CDN caches html, everything else served as assets.