You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then dojox/app/controllers/History and dojox/app/controllers/HistoryHash don't get discover by dojox/app/build/discoverAppConfig to be inserted into layer
Need to included manually in app.profile.js
include: [
'dojo/i18n',
'dojo/domReady',
'dojo/text',
'dojox/json/ref',
'app/main',
'app/run',
//Add App Framework
'dojox/app/main',
//Add any modules inside a has in the config.json
//I think this is a bug in dojo/app/build/discoverAppConfig.js
'dojox/app/controllers/History',
'dojox/app/controllers/HistoryHash'
],
The text was updated successfully, but these errors were encountered:
The workaround is kind of manual for now, if the modules inside "has" are added to the dependencies array then they are force to be include, I think its still useful if dojox/app/build/discoverAppConfig.js could take a look at has and see if the modules need to be included in build.
if you have something like this in config.json
then
dojox/app/controllers/History
anddojox/app/controllers/HistoryHash
don't get discover bydojox/app/build/discoverAppConfig
to be inserted into layerNeed to included manually in
app.profile.js
The text was updated successfully, but these errors were encountered: