i was also gettting the same issue and I was using webpack I used this in webpack to resolve this path issue
output: {
path: path.resolve(__dirname, 'build'),
filename: 'renderer.js',
// Use different publicPath values for dev and prod
publicPath: isProduction ? './' : '/'
},