-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathwebpack.config.js
More file actions
137 lines (130 loc) · 3.84 KB
/
webpack.config.js
File metadata and controls
137 lines (130 loc) · 3.84 KB
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
const HtmlWebpackPlugin = require('html-webpack-plugin'); // Require html-webpack-plugin plugin
const CopyWebpackPlugin = require('copy-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const WebpackShellPlugin = require('webpack-shell-plugin');
const Dotenv = require('dotenv-webpack');
const ENV = process.env.APP_ENV;
const isTest = ENV === 'test'
const isProd = ENV === 'prod';
function setDevTool() { // function to set dev-tool depending on environment
if (isTest) {
return 'inline-source-map';
} else if (isProd) {
return 'source-map';
} else {
return 'eval-source-map';
}
}
const config = {
devtool: setDevTool(), //Set the devtool
entry: __dirname + "/src/app/index.jsx", // webpack entry point. Module to start building dependency graph
output: {
path: __dirname + '/dist', // Folder to store generated bundle
filename: 'bundle.js', // Name of generated bundle after build
publicPath: '/' // public URL of the output directory when referenced in a browser
},
resolve: {
fallback: {
fs: false,
}
},
module: { // where we defined file patterns and their loaders
rules: [
{
test: /\.jpe?g$|\.ico$|\.gif$|\.png$|\.woff$|\.ttf$|\.wav$|\.mp3$|\.webmanifest$|\.xml$/,
use: [
{
loader: 'file-loader',
options: {
limit: 1000,
name : '[name].[ext]'
}
}
],
},
{
test: /apple-app-site-association$/,
use: [
{
loader: 'file-loader',
options: {
limit: 1000,
name : '[name]'
}
}
],
},
{
test: /robots.txt$/,
use: [
{
loader: 'file-loader',
options: {
limit: 1000,
name : '[name]'
}
}
],
},
{
test: /assetlinks.json$/,
use: [
{
loader: 'file-loader',
options: {
limit: 1000,
name : '[name]'
}
}
],
},
{
test: /\.js[x]?$/,
use: 'babel-loader',
exclude: [
/node_modules/
]
},
{
test: /\.(sass|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
}]
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.svg$/,
use: ['@svgr/webpack'],
},
]
},
plugins: [ // Array of plugins to apply to build chunk
new HtmlWebpackPlugin({
template: __dirname + "/src/public/index.html",
inject: 'body'
}),
new Dotenv()
],
devServer: { // configuration for webpack-dev-server
contentBase: './src/public', //source of static assets
port: 7700, // port to run dev-server
disableHostCheck: true,
},
};
// Minify and copy assets in production
if(isProd) { // plugins to use in a production environment
config.plugins.push(
new UglifyJSPlugin(), // minify the chunk
new CopyWebpackPlugin([{ // copy assets to public folder
from: __dirname + '/src/public'
}])
);
};
module.exports = config;