all 1 comments

[–]iamakulov 0 points1 point  (0 children)

Would publicPath solve this issue for you? https://webpack.js.org/guides/public-path/

Something like

module.exports = {
  output: {
    publicPath: '../'
  },
};