Is there a way to obtain the minified EmberJs JavaScript and CSS assets without automatically initializing the EmberJs App?
The scenario is having a login.html
where users can log in, but with the static assets preloaded to eliminate waiting time once redirected to the authenticated App.
The authenticated App incorporates an index.html
page with the original static assets, but performs database queries only after user authentication.
In this scenario, we aim for the Login View
to utilize a Django form, hence login.html
being a Django template.
If achieving this is not feasible, could the alternative be to utilize an EmberJs Login View
and manually refresh the page upon redirection to trigger the Django database queries once inside the App?