I’m working on this react app and when I build the projects the bundle.js
file is 10mb so after the deployment it takes time to load the content.
Here’s the code: https://github.com/sef-global/scholarx-frontend
Here’s my webpack config file:
JavaScript
x
70
70
1
// eslint-disable-next-line @typescript-eslint/no-var-requires
2
const path = require('path');
3
// eslint-disable-next-line @typescript-eslint/no-var-requires
4
const webpack = require('webpack');
5
// eslint-disable-next-line @typescript-eslint/no-var-requires
6
const HtmlWebpackPlugin = require('html-webpack-plugin');
7
8
module.exports = {
9
entry: './src/index.tsx',
10
mode: 'development',
11
module: {
12
rules: [
13
{
14
test: /.(js|jsx|ts|tsx)$/,
15
exclude: /(node_modules|bower_components)/,
16
loader: 'babel-loader',
17
options: { presets: ['@babel/env'] },
18
},
19
{
20
test: /.css$/,
21
use: [
22
{ loader: 'style-loader' },
23
{ loader: 'css-loader', options: { modules: true } },
24
],
25
},
26
{
27
test: /.less$/,
28
use: [
29
{
30
loader: 'style-loader',
31
},
32
{
33
loader: 'css-loader',
34
},
35
{
36
loader: 'less-loader',
37
options: {
38
lessOptions: { javascriptEnabled: true },
39
},
40
},
41
],
42
},
43
{
44
test: /.(png|jpe?g|gif)$/i,
45
use: [{ loader: 'file-loader' }],
46
},
47
],
48
},
49
resolve: { extensions: ['*', '.js', '.jsx', '.ts', '.tsx'] },
50
output: {
51
path: path.resolve(__dirname, 'dist/'),
52
publicPath: '/dist/',
53
filename: 'bundle.js',
54
},
55
devServer: {
56
contentBase: path.join(__dirname, 'public/'),
57
port: 3000,
58
historyApiFallback: true,
59
open: true,
60
hotOnly: true,
61
},
62
plugins: [
63
new webpack.HotModuleReplacementPlugin(),
64
new HtmlWebpackPlugin({
65
template: 'public/index.html',
66
favicon: 'public/favicon.png',
67
}),
68
],
69
};
70
Advertisement
Answer
I assume for production build you using your “build” command from packages.json
which states:
JavaScript
1
2
1
"build": "webpack",
2
That will trigger webpack
“building” of course, but in your webpack config the mode
is set to development
– so it will build in development mode.
What you want to do is this:
JavaScript
1
2
1
"build": "webpack --mode production",
2
--mode
argument will override what you have in webpack.config.