-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
108 lines (105 loc) · 2.61 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
96
97
98
99
100
101
102
103
104
105
106
107
108
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
require('dotenv').config();
const TerserPlugin = require("terser-webpack-plugin");
console.log('NODE_ENV', process.env.NODE_ENV);
module.exports = {
entry: './client/src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: '/',
filename: '[name].[contenthash].js',
},
devtool: process.env.NODE_ENV === 'production' ? 'source-map' : 'eval-source-map',
mode: process.env.NODE_ENV,
devServer: {
host: '0.0.0.0',
port: 3002,
hot: true,
historyApiFallback: true,
static: {
directory: path.resolve(__dirname, 'dist'),
publicPath: '/',
},
headers: { 'Access-Control-Allow-Origin': '*' },
proxy: {
'/**': {
target: 'http://localhost:3000/',
secure: false,
},
},
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
options: { presets: ['@babel/env', '@babel/preset-react'] },
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|jpe?g|gif|webp)$/i,
use: [
{
loader: 'file-loader',
},
],
},
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: () => [require('autoprefixer')],
},
},
},
'sass-loader',
],
},
],
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{ from: 'robots.txt', to: 'robots.txt' }, // Adjust the path to your robots.txt file
],
}),
new HtmlWebpackPlugin({
favicon: path.resolve(__dirname, './client/src/images/smol-logo.png'),
template: './client/public/index.html',
}),
new Dotenv(),
new CompressionPlugin({
filename: '[path][base].gz',
algorithm: 'gzip',
test: /\.(js|css|html)$/,
threshold: 8192,
minRatio: 0.8,
}),
new CleanWebpackPlugin(),
],
optimization: {
splitChunks: {
chunks: 'all',
},
minimizer: [
`...`,
new TerserPlugin()
],
runtimeChunk: 'single',
},
};