So the issue with this setting is that when the initial bundle load, it cannot load future bundles.
Initial bundle comes from http://dev.local/m/bundles/foo-74b26207487b44f00927.js
.
Then it tries to load the another bundle: http://dev.local/1.1-74b26207487b44f00927.js
.
It looks like the webpack publicPath
is messed up.
Not sure why this would happen. Where does the name
1.1-
even come from?Try setting
publicPath
tohttp://dev.local/m/
in output and see if that works.