Browse Source

Override public path for IE11

pull/392/head
baarkerlounger 3 years ago
parent
commit
85179600ed
  1. 3
      webpack.config.js

3
webpack.config.js

@ -45,6 +45,9 @@ module.exports = {
}, },
output: { output: {
filename: "[name].js", filename: "[name].js",
// we must set publicPath to an empty value to override the default of
// auto which doesn't work in IE11
publicPath: '',
path: path.resolve(__dirname, "app/assets/builds"), path: path.resolve(__dirname, "app/assets/builds"),
}, },
plugins: [ plugins: [

Loading…
Cancel
Save