-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
104 lines (96 loc) · 2.53 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
const path = require('path');
const webpack = require('webpack');
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 RemarkHTML = require('remark-html');
const HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: './dist/index.html',
});
const MiniCssExtractPluginConfig = new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
});
const CompressionPluginConfig = new CompressionPlugin();
const PreloadWebpackPluginConfig = new PreloadWebpackPlugin({
rel: 'preload',
as: 'font',
include: 'allAssets',
fileWhitelist: [/\.(woff2?|eot|ttf|otf)(\?.*)?$/i],
});
const CopyWebpackPluginConfig = new CopyPlugin({
patterns: [
{ from: './src/assets/fonts/roboto.woff2', to: './' },
{ from: './src/assets/fonts/roboto-light.woff2', to: './' },
{ from: './dist/favicon.ico', to: './' },
],
});
module.exports = {
entry: './src/App.tsx',
mode: 'development',
module: {
rules: [
{
test: /\.md$/,
use: 'raw-loader',
},
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: 'graphql-tag/loader',
},
{
test: /\.[jt]sx?$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true,
experimentalWatchApi: true,
},
},
],
},
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
},
{
test: /\.(woff2|ttf|woff|ico)$/,
use: ['file-loader?name=[name].[ext]'],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: ['url-loader?limit=10000', 'img-loader'],
},
],
},
devServer: {
hot: true,
liveReload: true,
historyApiFallback: true,
},
resolve: { extensions: ['.js', '.jsx', '.ts', '.tsx'] },
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false,
},
output: {
filename: 'bundle.js',
},
watchOptions: {},
plugins: [
// new BundleAnalyzerPlugin(),
MiniCssExtractPluginConfig,
HTMLWebpackPluginConfig,
PreloadWebpackPluginConfig,
CompressionPluginConfig,
CopyWebpackPluginConfig,
new webpack.HotModuleReplacementPlugin(),
],
parallelism: 10,
};