-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.prod.js
127 lines (125 loc) · 3.65 KB
/
webpack.config.prod.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import webpack from 'webpack';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import path from 'path';
const GLOBALS = {
'process.env.NODE_ENV': JSON.stringify('production'),
__DEV__: false,
};
export default {
mode: 'production',
resolve: {
extensions: ['.js', '.jsx', '.json'], // Automatically resolve these extensions
},
devtool: 'source-map', // Generate source maps for better debugging in production
entry: path.resolve(__dirname, 'src/index'),
target: 'web',
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: '/',
filename: '[name].[contenthash].js', // Use contenthash for better caching
clean: true, // Clean the output directory before emit
},
plugins: [
new webpack.DefinePlugin(GLOBALS),
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css', // Use contenthash for CSS as well
}),
new HtmlWebpackPlugin({
template: 'src/index.ejs',
favicon: 'src/Images/favicon.png',
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true,
},
inject: true,
}),
new webpack.optimize.AggressiveMergingPlugin(), // Optimize chunk merging
],
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: ['babel-loader'], // Use babel-loader to transpile JS/JSX files
},
{
test: /\.eot(\?v=\d+.\d+.\d+)?$/,
type: 'asset/resource', // Handle eot files as resources
generator: {
filename: 'fonts/[name].[contenthash][ext]',
},
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
type: 'asset/resource', // Handle woff files as resources
generator: {
filename: 'fonts/[name].[contenthash][ext]',
},
},
{
test: /\.[ot]tf(\?v=\d+.\d+.\d+)?$/,
type: 'asset/resource', // Handle ttf files as resources
generator: {
filename: 'fonts/[name].[contenthash][ext]',
},
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource', // Handle svg files as resources
generator: {
filename: 'images/[name].[contenthash][ext]',
},
},
{
test: /\.(jpe?g|png|gif|ico)$/i,
type: 'asset/resource', // Handle image files as resources
generator: {
filename: 'images/[name].[contenthash][ext]',
},
},
{
test: /(\.css|\.scss|\.sass)$/,
use: [
MiniCssExtractPlugin.loader, // Extract CSS into separate files
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 2,
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
require('autoprefixer')(), // Automatically add vendor prefixes
],
},
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
implementation: require('sass'), // Use Dart Sass instead of node-sass
sassOptions: {
includePaths: [path.resolve(__dirname, 'src', 'scss')],
},
sourceMap: true,
},
},
],
},
],
},
};