wisemapping-frontend/packages/webapp/webpack.prod.js

27 lines
774 B
JavaScript
Raw Normal View History

2021-02-16 08:43:26 +01:00
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
2021-02-16 10:15:04 +01:00
const path = require('path');
2021-02-17 08:50:39 +01:00
// const HtmlWebpackPlugin = require('html-webpack-plugin');
2021-02-17 06:51:59 +01:00
2021-02-16 08:43:26 +01:00
2021-02-16 20:22:55 +01:00
const CompressionPlugin = require('compression-webpack-plugin');
2021-02-16 08:43:26 +01:00
module.exports = merge(common, {
mode: 'production',
devtool: 'source-map',
optimization: {
2021-02-16 20:14:04 +01:00
minimize: true
},
plugins: [
2021-02-17 08:39:28 +01:00
new CompressionPlugin()
// ,
// new HtmlWebpackPlugin({
// template: path.join(__dirname, 'public/index.html'),
// templateParameters: {
// PUBLIC_URL: process.env.PUBLIC_URL ? process.env.PUBLIC_URL : 'https://www.wisemapping.com'
// },
// base: process.env.PUBLIC_URL ? process.env.PUBLIC_URL : 'https://www.wisemapping.com'
// })
2021-02-16 20:14:04 +01:00
]
2021-02-16 08:43:26 +01:00
});