I have built extjs 5 app using sencha cmd and I want to use it in my custom hmtl page. I have the following structure:
extjsapp
.sencha
app
build
ext
packages
......
bootstrap.js
bootstrap.json
app.js
.......
customapp
index.html
script.js
What I want to do is in my customapp/index.html I request bootstrap.js and it should load all packages and ext from extjsapp folder. By default it tries to load them from customapp/ext which is relative to where boostrap.js is used. How can I make/build it so that it will load ext from extjsapp/ext instead of customapp/ext.
It should be possible to use bootstrap.js from any location to load extjs framework and all required packages that are built in extjs folder.