delete-sourcemap-webpack-plugin
delete source map url and files after uploaded to anywhere
// webpack.config.js
const DeleteSourceMapWebpackPlugin = require('delete-sourcemap-webpack-plugin')
module.exports = {
// ...
plugins: [
new DeleteSourceMapWebpackPlugin()
],
// ...
}