2021-04-22 12:48:45 +00:00
|
|
|
const CompressionPlugin = require("compression-webpack-plugin");
|
|
|
|
|
2019-01-05 16:12:09 +00:00
|
|
|
module.exports = {
|
|
|
|
runtimeCompiler: true,
|
2021-03-21 11:51:58 +00:00
|
|
|
publicPath: "[{[ .StaticURL ]}]",
|
2020-07-27 17:35:02 +00:00
|
|
|
parallel: 2,
|
2021-04-22 12:48:45 +00:00
|
|
|
configureWebpack: {
|
|
|
|
plugins: [
|
|
|
|
new CompressionPlugin({
|
|
|
|
include: /\.js$/,
|
|
|
|
deleteOriginalAssets: true,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
2021-03-21 11:51:58 +00:00
|
|
|
};
|