mugdha
mugdha

Reputation: 3

For sencha app build , do we need to include all js files related to view in main.js(portal.js)?

I am using sencha cmd 6 for building my application. my folder structure is

production build process execution is successful but when i load that build its giving .js file not found error. So i include all js files in folder structure into main js portal.js then .js error is removed and build works.

But i dont want to include all these list of files in one single js, so can we skip the js include part from portal.js and use any property or attribute to include all js files ?

Upvotes: 0

Views: 702

Answers (1)

Ronak Patel
Ronak Patel

Reputation: 671

You can specify with * like 'Ext.chart.*' in requires section of Ext.app.Application.

Hope this helps.

Upvotes: 0

Related Questions