A plugin that lets you override the Webpack modules public path in webpage runtime.
const RuntimePublicPathPlugin = require("webpack-runtime-public-path-plugin")
plugins: [
...
new RuntimePublicPathPlugin({
runtimePublicPath: "'/foo/bar/'"
})
...
]
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "/dist/";
/******/ // Dynamic assets path override (runtime-public-path-webpack-plugin)
/******/ __webpack_require__.p = ('/foo/bar/') || __webpack_require__.p;