2019-11-13 15:52:13 +01:00
|
|
|
const path = require('path');
|
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: 'production',
|
|
|
|
entry: {
|
2019-11-17 22:39:06 +01:00
|
|
|
index: ['./web_src/js/index']
|
2019-11-13 15:52:13 +01:00
|
|
|
},
|
|
|
|
devtool: 'source-map',
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, 'public/js'),
|
2019-11-17 22:39:06 +01:00
|
|
|
filename: 'index.js',
|
|
|
|
chunkFilename: '[name].js',
|
2019-11-13 15:52:13 +01:00
|
|
|
},
|
|
|
|
optimization: {
|
|
|
|
minimize: true,
|
2019-11-14 22:39:51 +01:00
|
|
|
minimizer: [new TerserPlugin({
|
|
|
|
sourceMap: true,
|
2019-11-17 22:39:06 +01:00
|
|
|
extractComments: false,
|
|
|
|
terserOptions: {
|
|
|
|
output: {
|
|
|
|
comments: false,
|
|
|
|
},
|
|
|
|
},
|
2019-11-14 22:39:51 +01:00
|
|
|
})],
|
2019-11-13 15:52:13 +01:00
|
|
|
},
|
2019-11-14 22:39:51 +01:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
|
|
|
useBuiltIns: 'entry',
|
|
|
|
corejs: 3,
|
|
|
|
}
|
|
|
|
]
|
2019-11-17 22:39:06 +01:00
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'@babel/plugin-transform-runtime',
|
|
|
|
{
|
|
|
|
regenerator: true,
|
|
|
|
}
|
|
|
|
]
|
|
|
|
],
|
2019-11-14 22:39:51 +01:00
|
|
|
}
|
|
|
|
}
|
2019-11-17 22:39:06 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/i,
|
|
|
|
use: ['style-loader', 'css-loader'],
|
|
|
|
},
|
2019-11-14 22:39:51 +01:00
|
|
|
]
|
|
|
|
}
|
2019-11-13 15:52:13 +01:00
|
|
|
};
|