forked from johndatserakis/file-upload-with-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
105 lines (103 loc) · 3.53 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const env = process.env.NODE_ENV || 'development';
const config = {
entry: [
path.resolve(__dirname, 'example', 'main.js')
],
output: {
path: path.resolve(__dirname, './docs'),
publicPath: (process.env.NODE_ENV === 'development') ? '/' : './',
filename: (env === 'development') ? '[name].[hash].js' : '[name].[contenthash].js'
},
optimization: {
splitChunks: {
cacheGroups: {
shared: {
test: /[\\/]node_modules[\\/]/,
name: "vendor",
enforce: true,
chunks: "all"
}
}
},
minimizer: (env === 'development') ? [
new OptimizeCSSAssetsPlugin(),
new TerserPlugin()
] : undefined,
},
mode: env,
devtool: (env === 'development') ? 'cheap-module-eval-source-map' : undefined,
devServer: {
historyApiFallback: true
},
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},
{
test: /\.js$/,
exclude: /node_modules/,
use: ['eslint-loader']
},
{
test: /\.(scss|css)$/,
use: [
// For hot reload in dev https://github.com/webpack-contrib/mini-css-extract-plugin/issues/34
(env === 'development') ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
],
},
{
test: /\.(png|jpg|gif|otf|svg)$/,
use: [{
loader: 'file-loader',
options: {}
}]
}
]
},
plugins: [
new CleanWebpackPlugin('docs', {}),
new HtmlWebpackPlugin({
title: 'file-upload-with-preview',
template: path.resolve(__dirname, 'example', 'index.html'),
inject: true,
minify: (env === 'development') ? undefined : {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
}
}),
new MiniCssExtractPlugin({
filename: (env === 'development') ? '[name].css' : '[name].[hash].css',
chunkFilename: (env === 'development') ? '[id].css' : '[id].[hash].css',
}),
new CopyWebpackPlugin([
{ from: path.resolve(__dirname, 'public', 'favicon.png'), to: './favicon.png' },
{ from: path.resolve(__dirname, 'public', 'logo-promosis.png'), to: './logo-promosis.png' },
{ from: path.resolve(__dirname, 'public', 'badge.png'), to: './badge.png' }
])
],
resolve: {
extensions: ['.js', '.json'],
alias: {
'@': path.resolve(__dirname, 'example')
}
},
}
module.exports = config