This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwebpack.config.js
73 lines (70 loc) · 1.66 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
// We are using node's native package 'path'
// https://nodejs.org/api/path.html
const path = require("path");
const webpack = require("webpack"); // reference to webpack Object
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
// Constant with our paths
const paths = {
DIST: path.resolve(__dirname, "dist"),
SRC: path.resolve(__dirname, "src"),
};
// Webpack configuration
module.exports = {
entry: [path.join(paths.SRC, "index.js")],
output: {
path: paths.DIST,
filename: "main.bundle.js",
},
watch: true,
// Adding jQuery as external library
externals: {
jquery: "jQuery",
},
// Tell webpack to use html plugin -> ADDED IN THIS STEP
// index.html is used as a template in which it'll inject bundled app.
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
Popper: "popper.js",
}),
new MiniCssExtractPlugin({
filename: "style.min.css",
}),
],
// Loaders configuration -> ADDED IN THIS STEP
// We are telling webpack to use "babel-loader" for .js and .jsx files
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-env"],
},
},
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"postcss-loader",
"sass-loader",
],
},
],
},
// Enable importing JS files without specifying their's extenstion -> ADDED IN THIS STEP
//
// So we can write:
// import MyComponent from './my-component';
//
// Instead of:
// import MyComponent from './my-component.jsx';
resolve: {
extensions: [".js", ".jsx", ".scss"],
},
};