-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
248 lines (233 loc) · 7.26 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// Is the current build a development build
const IS_DEV = (process.env.NODE_ENV === 'dev');
const dirNode = 'node_modules';
const dirApp = path.join(__dirname, 'app');
const dirAssets = path.join(__dirname, 'app/assets');
const package = require('./package.json');
const appHtmlTitle = 'Webpack Boilerplate';
const ExtractTextPlugin = require('extract-text-webpack-plugin');
/**
* Webpack Configuration
*/
module.exports = {
entry: {
vendor: Object.keys(package.dependencies),
bundle: path.join(dirApp, 'index.js')
},
resolve: {
extensions: ['.js', '.jsx'],
modules: [
dirNode,
dirApp,
dirAssets
]
},
optimization: {
splitChunks: {
name: false,
chunks: "async",
cacheGroups: {
vendor: {
chunks: 'initial',
name: 'vendor',
test: 'vendor',
enforce: true
},
}
},
runtimeChunk: true
},
plugins: [
new webpack.DefinePlugin({
IS_DEV: IS_DEV
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'app/index.html'),
filename: 'index.html',
// favicon: 'assets/favicon.ico',
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true,
},
inject: true,
hash: true,
title: "Hello World",
'files': {
'css': ['[name].bundle.css'],
'js': ['[name].bundle.js'],
'chunks': {
'head': {
'entry': '',
'css': '[name].bundle.css'
},
'main': {
'entry': '[name].bundle.js',
'css': []
},
}
}
}),
new BundleAnalyzerPlugin({
analyzerMode: 'static',
openAnalyzer: false
}),
new ExtractTextPlugin({
filename: '[name].bundle.css',
disable: IS_DEV,
allChunks: true,
ignoreOrder: false
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
"window.Tether": 'tether',
Tether: 'tether'
})
],
module: {
rules: [
// BABEL
{
test: /\.(js|jsx)$/,
use: ['babel-loader', 'eslint-loader'],
exclude: /(node_modules)/
},
// STYLES
{
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: IS_DEV
}
},
]
},
// CSS / SASS
// {
// test: /\.scss/,
// use: [
// 'style-loader',
// {
// loader: 'css-loader',
// options: {
// sourceMap: IS_DEV
// }
// },
// {
// loader: 'sass-loader',
// options: {
// sourceMap: IS_DEV,
// includePaths: [dirAssets]
// }
// }
// ]
// },
{
test: /\.(scss)$/,
use: [
{
// Adds CSS to the DOM by injecting a `<style>` tag
loader: 'style-loader'
},
{
// Interprets `@import` and `url()` like `import/require()` and will resolve them
loader: 'css-loader'
},
{
// Loader for webpack to process CSS with PostCSS
loader: 'postcss-loader',
options: {
plugins: function () {
return [
require('autoprefixer')
];
}
}
},
{
// Loads a SASS/SCSS file and compiles it to CSS
loader: 'sass-loader'
}
]
},
// {
// test: /\.scss$/,
// use: [{
// loader: "style-loader" // creates style nodes from JS strings
// }, {
// loader: "css-loader" // translates CSS into CommonJS
// }, {
// loader: "sass-loader" // compiles Sass to CSS
// }]
// },
// IMAGES
{
test: /\.(jpg|png|gif)$/,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
query: {
gifsicle: {
interlaced: true
},
mozjpeg: {
progressive: true
},
optipng: {
optimizationLevel: 7
},
pngquant: {
quality: '65-90',
speed: 4
}
}
},
},
],
},
//FONTS
{
test: /\.(eot|svg|otf|ttf|woff|woff2)$/,
use: 'file-loader',
},
//Static HTML
{
test: /\.html$/,
use: 'html-loader'
},
//JSON
{
test: /\.json$/,
use: 'json-loader'
},
//VIDEOS
{
test: /\.(mp4|webm)$/,
use: {
loader: 'url-loader',
options: {
limit: 10000
},
},
},
]
}
};