Skip to content

Commit

Permalink
fix(core): Fix webpackJsonp not being defined for local dev (#4322)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Reynolds authored Oct 24, 2017
1 parent 00e76b7 commit 7c882c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function configure(IS_TEST) {
// settings.js is put at the end of the <script> blocks
// which breaks the booting of the app.
chunksSortMode: (a, b) => {
const chunks = ['init', 'vendor', 'settings', 'settingsLocal', 'app'];
const chunks = ['init', 'vendor', 'halconfig', 'settings', 'settingsLocal', 'app'];
return chunks.indexOf(a.names[0]) - chunks.indexOf(b.names[0]);
}
})
Expand Down

0 comments on commit 7c882c0

Please sign in to comment.