In my java web application sources generated by Sencha CMD are located in resources folder. I am trying to run application in dev mode (without build) using boostrap.js, so I declared Ext.Manifest and included below in jsp file:
<script id="microloader" data-app="52906e0a-6b39-4de6-b1f2-dc27cf37969e" type="text/javascript" src="resources/bootstrap.js"></script>
With standard configuration microloader tries to load files as if extjs application source files were directly in web root path, which is inccorect as the files are not there:
http://localhost:8080/myapp/classic.json
how to "tell" microloader to look for the files in resource folder, so the request would look like this:
http://localhost:8080/myapp/resources/classic.json
I am able to make this work without using boostrap.js, if I include app.js directly and specify appFolder in Ext.Application. But I want to test different profiles (modern, classic).