This repository was archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
125 lines (123 loc) · 2.98 KB
/
Copy pathwebpack.config.js
File metadata and controls
125 lines (123 loc) · 2.98 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
'use strict'
require('dotenv').config()
const webpack = require('webpack')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const BrowserSyncPlugin = require('browser-sync-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const StylelintPlugin = require('stylelint-webpack-plugin')
const path = require('path')
const devMode = process.env.NODE_ENV !== 'production'
module.exports = {
mode: devMode ? 'development' : 'production',
entry: {
index: path.join(__dirname, 'src', 'index.js')
},
output: {
filename: '[name].[hash].bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/'
},
devtool: devMode ? 'inline-source-map' : false,
stats: {
children: false,
logging: 'verbose',
outputPath: true,
performance: true
},
devServer: {
contentBase: './dist',
historyApiFallback: true,
hot: devMode
},
optimization: {
splitChunks: {
cacheGroups: {
styles: {
name: 'styles',
test: /\.css$/,
chunks: 'all',
enforce: true
}
}
}
},
resolve: {
alias: {
'react-dom': '@hot-loader/react-dom'
},
extensions: ['.js', '.jsx']
},
module: {
rules: [
{
test: /\.css$/,
use: [
{ loader: 'css-hot-loader', options: { sourceMap: devMode } },
{
loader: MiniCssExtractPlugin.loader
},
{ loader: 'css-loader', options: { sourceMap: devMode } },
{ loader: 'postcss-loader', options: { sourceMap: devMode } }
]
},
{
test: /\.jpe?g$|\.ico$|\.gif$|\.png$|\.woff$|\.ttf$|\.wav$|\.mp3$/,
loader: 'file-loader?name=[name].[hash].[ext]'
},
{
test: /\.svg$/,
loader: 'svg-inline-loader'
},
{
test: /\.js$|\.jsx$/,
exclude: /node_modules/,
enforce: 'pre',
loaders: ['eslint-loader', 'standard-loader']
},
{
test: /\.js$|\.jsx$/,
exclude: /node_modules/,
loader: 'babel-loader'
}
]
},
plugins: [
new webpack.ProgressPlugin({
entries: true,
modules: true,
modulesCount: 100,
profile: true,
handler: (percentage, message) => {
console.info(percentage, message)
}
}),
new CleanWebpackPlugin({
verbose: true
}),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css'
}),
new StylelintPlugin({
context: 'src/styles',
files: '*.css'
}),
new webpack.EnvironmentPlugin(['NODE_ENV', 'GIT_API']),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, 'src', 'index.html'),
chunks: ['index', 'styles']
}),
new BrowserSyncPlugin(
{
host: '192.168.15.11',
port: 3000,
proxy: 'http://localhost:8080/'
},
{
reload: false
}
)
]
}