DSTEngine/hGameTest/webpack.prod.js
2025-01-15 19:42:35 +01:00

16 lines
404 B
JavaScript

const webpack = require ('webpack');
const merge = require ('webpack-merge');
const UglifyJSPlugin = require ('uglifyjs-webpack-plugin');
const common = require ('./webpack.common.js');
module.exports = merge (common, {
devtool: "source-map",
plugins: [
new UglifyJSPlugin ({
sourceMap: true
}),
new webpack.DefinePlugin ({
'process.env.NODE_ENV': JSON.stringify ('production')
})
]
});