mirror of
https://gitlab.com/psono/psono-client
synced 2025-04-19 03:22:16 +03:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
const webpack = require('webpack');
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
plugins: [
|
|
],
|
|
optimization: {
|
|
minimize: true,
|
|
minimizer: [new TerserPlugin()],
|
|
},
|
|
}; |