We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6fe28e commit 5c8bbeeCopy full SHA for 5c8bbee
webpack-config.js
@@ -8,7 +8,7 @@ module.exports = {
8
minimize: true,
9
minimizer: [
10
new TerserPlugin({
11
- include:/./,
+ include:/\.js$/,
12
terserOptions: {
13
output: {
14
comments: false,
@@ -25,6 +25,7 @@ module.exports = {
25
path: './dist',
26
filename: 'tot.js'
27
},
28
+ /*
29
module: {
30
loaders: [
31
{
@@ -37,13 +38,15 @@ module.exports = {
37
38
39
]
40
41
+ */
42
mode: 'production',
43
plugins: [
44
new Clean(['dist']),
45
new ExtractTextPlugin("app.[hash].css"),
46
47
new HtmlWebpackPlugin({
48
filename: 'index.html',
49
title: 'jQuery UI Autocomplete demo, built with webpack'
- })
50
+ })*/
51
52
};
0 commit comments