/delete-sourcemap-webpack-plugin

delete source map url and files after uploaded to anywhere

Primary LanguageJavaScript

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()
    ],
    // ...
}