forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
121 lines (118 loc) · 3.14 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
109
110
111
112
113
114
115
116
117
118
119
120
121
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
const isProd = process.env.NODE_ENV === 'production';
const devServerPort = 9000;
const basePath = '<%= basePath %>';
const pkg = require('./package.json');
module.exports = {
mode: 'development',
bail: true,
devtool: isProd ? false : 'eval-cheap-module-source-map',
entry: ['./src/ui/index.tsx'],
output: {
path: path.resolve(__dirname, './static'),
filename: `[name]${isProd ? '.[contenthash]' : ''}.js`,
publicPath: `${
isProd ? basePath : `http://localhost:${devServerPort}`
}/static/`,
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
module: {
rules: [
{
test: /\.css$/,
use: [
isProd ? MiniCssExtractPlugin.loader : 'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: {
auto: true,
exportLocalsConvention: 'camelCaseOnly',
localIdentName: isProd
? '[hash:base64:6]'
: '[name]__[local]--[hash:base64:5]',
},
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [['postcss-preset-env']],
},
},
},
],
},
{
test: /\.[jt]sx?$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
plugins: [
!isProd && require.resolve('react-refresh/babel'),
].filter(Boolean),
},
},
],
},
],
},
optimization: {
minimizer: [isProd && `...`, isProd && new CssMinimizerPlugin()].filter(
Boolean
),
chunkIds: 'named',
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: 'initial',
name: 'vendor',
priority: 10,
enforce: true,
},
},
},
},
plugins: [
new webpack.DefinePlugin({
['process.env.APP_VERSION']: JSON.stringify(pkg.version),
}),
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
new HtmlWebpackPlugin({
filename: path.resolve(__dirname, './dist/ui/index.ejs'),
template: './src/ui/index.ejs',
templateParameters: {
basePath,
},
}),
new ForkTsCheckerWebpackPlugin(),
!isProd && new ReactRefreshWebpackPlugin(),
].filter(Boolean),
devServer: {
proxy: {
'*': 'http://localhost:3000',
},
compress: true,
writeToDisk: true,
hot: true,
port: devServerPort,
open: true,
openPage: 'ui',
},
};