-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathwebpack.common.js
245 lines (239 loc) · 6.99 KB
/
webpack.common.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const AntdDayjsWebpackPlugin = require('antd-dayjs-webpack-plugin')
const Dotenv = require('dotenv-webpack')
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin')
// const CircularDependencyPlugin = require('circular-dependency-plugin')
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
const WebpackBar = require('webpackbar')
// const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
const ESLintWebpackPlugin = require('eslint-webpack-plugin')
const paths = require('./paths')
const isDev = process.env.NODE_ENV === 'development'
const UNABLE_ANALYZE = 0
const USE_ANALYZE = process.env.USE_ANALYZE || UNABLE_ANALYZE
let dotEnv = ''
switch (process.env.BUILD_GOAL) {
case 'development':
dotEnv = '.env.development'
break
case 'production':
dotEnv = '.env.production'
break
case 'dev':
dotEnv = '.env.dev'
break
case 'test':
dotEnv = '.env.test'
break
default:
dotEnv = '.env.development'
}
const config = {
entry: {
app: `${paths.src}/index.tsx`,
},
output: {
path: paths.build,
publicPath: isDev ? '/' : './',
filename: isDev ? 'static/js/[name].js' : 'static/js/[name].[contenthash].js',
chunkFilename: isDev ? 'static/js/[name].js' : 'static/js/[name].[contenthash].js',
// library: '',
// libraryTarget: 'umd',
// chunkLoadingGlobal: '',
clean: true,
// contentBase: path.join(__dirname, "public"), // 配置额外的静态文件内容的访问路径
},
resolve: {
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '...'],
alias: {
'@src': path.resolve('./src'),
'@stateless': path.resolve('./src/components/stateless'),
'@stateful': path.resolve('./src/components/stateful'),
'@hooks': path.resolve('./src/components/hooks'),
'@container': path.resolve('./src/components/container'),
'@assets': path.resolve('./src/assets'),
'@pages': path.resolve('./src/pages'),
'@routers': path.resolve('./src/routers'),
'@utils': path.resolve('./src/utils'),
'@theme': path.resolve('./src/theme'),
},
symlinks: false,
},
stats: 'verbose', // 输出详细的构建信息
plugins: [
new Dotenv({
path: path.resolve(__dirname, '..', dotEnv),
}),
new HtmlWebpackPlugin({
title: isDev ? 'Pro React Dev' : 'Pro React Admin',
template: `${paths.public}/index.html`,
favicon: `${paths.public}/favicon.ico`,
filename: 'index.html',
inject: 'body',
hash: true,
cache: false,
minify: isDev
? false
: {
removeAttributeQuotes: true,
collapseWhitespace: true,
removeComments: true,
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
minifyCSS: true,
minifyJS: true,
minifyURLs: true,
useShortDoctype: true,
},
}),
new AntdDayjsWebpackPlugin(),
new CaseSensitivePathsPlugin(),
// new CircularDependencyPlugin({
// exclude: /node_modules/,
// include: /src/,
// failOnError: true,
// allowAsyncCycles: false,
// cwd: process.cwd(),
// }),
new NodePolyfillPlugin(),
new WebpackBar(),
// new ForkTsCheckerWebpackPlugin({
// async: false,
// memoryLimit: 8192,
// }),
new ESLintWebpackPlugin({
// 指定检查文件的根目录
context: path.resolve(__dirname, '../src'),
exclude: 'node_modules', // 默认值
cache: true, // 开启缓存
// 缓存目录
cacheLocation: path.resolve(__dirname, '../node_modules/.cache/.eslintcache'),
}),
],
module: {
// 将缺失的导出提示成错误而不是警告
strictExportPresence: true,
rules: [
{
test: /\.m?js$/,
resolve: {
fullySpecified: false,
},
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader', 'postcss-loader'],
},
{
test: /\.less$/i,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: true,
modules: {
mode: 'local',
auto: true,
exportGlobals: true,
localIdentName: isDev ? '[path][name]__[local]--[hash:base64:5]' : '[local]--[hash:base64:5]',
localIdentContext: paths.src,
namedExport: false,
exportLocalsConvention: 'camelCase',
},
importLoaders: 2,
},
},
{
loader: require.resolve('postcss-loader'),
options: {
postcssOptions: {
ident: 'postcss',
config: false,
plugins: [
'postcss-flexbugs-fixes',
[
'postcss-preset-env',
{
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
},
],
'postcss-normalize',
],
},
sourceMap: true,
},
},
],
},
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
use: [
{
loader: 'esbuild-loader',
options: {
// loader: 'tsx',
target: 'es2020',
},
},
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: ['@babel/plugin-transform-object-rest-spread', '@babel/plugin-transform-runtime'],
},
},
],
},
{
test: /\.(png|jpe?g|gif|webp|eot|ttf|woff|woff2|mp4|mp3|mkv|pdf)$/i,
type: 'asset',
parser: {
// Conditions for converting to base64
dataUrlCondition: {
maxSize: 25 * 1024, // 25kb
},
},
generator: {
filename: 'images/[contenthash][ext][query]',
},
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'babel-loader',
},
{
loader: '@svgr/webpack',
options: {
babel: false,
icon: true,
},
},
],
},
],
},
stats: {
all: false,
errors: true,
warnings: true,
errorDetails: true,
moduleTrace: true, // 打印模块追踪信息,与--trace - warnings类似
excludeAssets: /node_modules/,
},
}
if (USE_ANALYZE) {
config.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = config