-
Beta Was this translation helpful? Give feedback.
Answered by
sergiodxa
Feb 29, 2024
Replies: 1 comment
-
There's no way to configure the number of chunks that are generated, I recommend you to instead put a CDN in front of your app, then your static assets can be requested from the CDN instead of your app so they will not count for the 35 request limit you set. Another option is that you could grab the public folder and upload it to S3 and send the traffic there, then configure in remix.config.js to use another domain for those assets, check https://sergiodxa.com/tutorials/use-a-cdn-for-your-static-assets-in-remix. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rreeves8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's no way to configure the number of chunks that are generated, I recommend you to instead put a CDN in front of your app, then your static assets can be requested from the CDN instead of your app so they will not count for the 35 request limit you set.
Another option is that you could grab the public folder and upload it to S3 and send the traffic there, then configure in remix.config.js to use another domain for those assets, check https://sergiodxa.com/tutorials/use-a-cdn-for-your-static-assets-in-remix.