This repository was archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
95 lines (88 loc) · 2.34 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
// 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
// Including UglifyJS
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
// Including MiniCssExtract
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
// Including OptimizeCSS
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
// Including HtmlWebpack
const HtmlWebpackPlugin = require('html-webpack-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'
},
devServer: {
historyApiFallback: true
},
// 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 UglifyJSPlugin(),
new HtmlWebpackPlugin({
title: 'React Redux template',
template: 'index.php'
}),
new OptimizeCSSAssetsPlugin(),
new MiniCssExtractPlugin({
filename: 'style.css'
})
],
// Loaders configuration -> ADDED IN THIS STEP
// We are telling webpack to use "babel-loader" for .js and .jsx files
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader'
],
},
{
test: /\.(css|scss)$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
],
},
{
test: /\.(png|svg|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: 'img/[name].[ext]'
}
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]'
}
}
],
},
// 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'],
},
};