-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (58 loc) · 1.67 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
const path = require("path");
const HTMLWebpackPlugin = require("html-webpack-plugin");
// entry points
// https://webpack.js.org/concepts/entry-points/
// output
// https://webpack.js.org/concepts/output/
module.exports = {
mode: "development",
// by default the mode is production but, we can change it
// to development here
devtool: "none",
entry: {
// Create a bundle "./dist/client.js" (named after the key)
client: "./src/client.js",
// Create a bundle "./dist/defaults.js" (named after the key)
defaults: "./src/defaults.js",
server: "./src/defaults.js"
},
output: {
// The 'path' property is used to specify the location where
// our bundled files are created. By default, it is
// path.join(__dirname, 'build');
path: path.join(__dirname, "build"),
filename: "[name].bundle.js"
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
// Use "exclude" with a regular expression to
// files that should be ignored by this loader.
// Notablly, we should always ignore node_modules
loader: "babel-loader"
},
{
test: /\.(png|jpg|gif|webp|svg|jpeg)$/,
loader: "file-loader",
options: {
outputPath: "images/"
}
},
{
test: /\.scss$/i,
use: ["style-loader", "css-loader", "sass-loader"]
}
]
},
plugins: [
new HTMLWebpackPlugin({
title: "Webpack Demo", // <title>Webpack Demo</title>
template: path.join(__dirname, "src", "index.html"),
chunks: ["client"]
// "chunks" tells webpack which bundles to include
// in the html file
})
]
};