-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
95 lines (86 loc) · 2.29 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
/* tslint:disable */
const path = require('path')
/**
* Clean and copy, used for file operations to copy and clean things in the
* destination directory.
*/
const CleanWebpackPlugin = require('clean-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const { entryPath, distFolder, htmlFile } = require('./bundle-config/paths')
module.exports = {
/**
* Configure the entry point that will be the bundle of the entire app
*/
entry: {
index: entryPath
},
/**
* Prod because this file is ued for production only
*/
mode: 'production',
/**
* Specifty where the bundled javascript will be placed. Note that the index.html
* file is placed by a plugin, it is not placed with this output instruction
*/
output: {
path: distFolder,
filename: '[name].js'
},
/**
* Parse various different file types with specific plugins that transform the content
* before it is bundled into the final output
*/
module: {
rules: [
/**
* Parsed js and jsx file with babel, using the .babelrc file found in the root
* of the project.
*/
{
test: /\.jsx?$/,
use: {
loader: 'babel-loader',
}
},
/**
* Support css imports as css modules
*/
{
test: /\.css$/,
use: [
{
loader: "style-loader"
},
{
loader: 'css-loader',
options: {
camelCase: true,
modules: true
},
}
]
},
]
},
plugins: [
/**
* Cleanup the destination folder before we get to do anything
*/
new CleanWebpackPlugin(distFolder),
/**
* Copy the the html file that we have into the destination folder. Also
* place the name of the output script inside the file, so it points to
* our latest generated script. This is needed because the name of the
* script changes every time we bundle, because we add a hash in the name
* to prevent caching
*/
new HtmlWebpackPlugin({
// Load a custom template (lodash by default)
template: htmlFile
}),
new CopyWebpackPlugin([
{ from: './src/static/', to: 'static/' }
])
]
};