-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
84 lines (82 loc) · 2.1 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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const PreloadWebpackPlugin = require('preload-webpack-plugin');
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
// .BundleAnalyzerPlugin;
const HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: 'index.html',
});
const MiniCssExtractPluginConfig = new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
});
const CompressionPluginConfig = new CompressionPlugin();
module.exports = {
entry: './src/App.tsx',
mode: 'development',
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: { presets: ['@babel/env'] },
},
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.(woff2|ttf|woff)$/,
use: ['file-loader'],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: ['url-loader?limit=10000', 'img-loader'],
},
],
},
devServer: {
hot: true,
inline: true,
liveReload: true,
historyApiFallback: true,
},
resolve: { extensions: ['.js', '.jsx', '.ts', '.tsx'] },
optimization: {
minimize: true,
splitChunks: {
cacheGroups: {
default: false,
},
},
},
output: {
filename: 'bundle.js',
},
plugins: [
MiniCssExtractPluginConfig,
HTMLWebpackPluginConfig,
new PreloadWebpackPlugin({
rel: 'preload',
as: 'font',
include: 'allAssets',
fileWhitelist: [/\.(woff2?|eot|ttf|otf)(\?.*)?$/i],
}),
CompressionPluginConfig,
new CopyPlugin({
patterns: [
{ from: './src/assets/fonts/roboto.woff2', to: './' },
{ from: './src/assets/fonts/roboto-light.woff2', to: './' },
],
}),
// new BundleAnalyzerPlugin(),
],
};