I am using Sencha Architect to make a few web apps. After each build I am presented with an 'app.js' among other files. The 'app.js' of each build has 90% of its content in common with another app.
Is there a way to extract that information and leave it in a common directory on the app server to then be imported dynamically?
- This would allow this large file to be cached by the server and browsers.
- The load time of each app will decrease.
- I will use less space on my server.