I've successfully generated the production files and run from the node prod server (built into react-boilerplate). When I run the project from the IIS-configured URL, http://localhost/abc/, I get console errors:
GET http://localhost/main.21e300b8d1fb516da3f2.js
and
GET http://localhost/main.7298ab25765cc3b7f65141e9b8a880ff.css
The path appears to be pointing to the root of localhost and doesn't seem to include "/abc".
I've set up my webpack config like so:
module.exports = (options) => ({
entry: options.entry,
output: Object.assign({
path: path.resolve(process.cwd()),
publicPath: '/',
}, options.output),...
Is there a setting in my Webpack config I'm missing? Thanks for any help.