-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
70 lines (64 loc) · 1.73 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
const path = require('path');
const webpack = require('webpack');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const rules = require('./webpack.rules');
const SERVER_PORT = process.env.PORT || 3001;
if (!process.env.SENTRY_FE_DSN) {
process.env.SENTRY_FE_DSN = 'missing_dsn';
}
module.exports = {
mode: 'development',
entry: [
...(process.env.NODE_ENV === 'production' ? [] : ['react-hot-loader/patch']),
'./src/client/polyfill.ts',
'./src/client/index.tsx',
],
devtool: process.env.WEBPACK_DEVTOOL || 'eval-source-map',
output: {
publicPath: '/',
path: path.join(__dirname, 'public_out'),
filename: '[name].js',
crossOriginLoading: 'anonymous',
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
module: {
rules,
},
devServer: {
static: './public_out',
hot: true,
historyApiFallback: true,
port: 3000,
proxy: {
'/api': `http://localhost:${SERVER_PORT}`,
},
allowedHosts: 'all',
compress: true,
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: './src/client/template.ejs',
filename: 'index.html',
templateParameters: {},
}),
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
}),
new webpack.IgnorePlugin({
resourceRegExp: /moment$/,
}),
new webpack.IgnorePlugin({
resourceRegExp: /react-dom\/client$/,
// contextRegExp: /(app\/react|@storybook\/react)/,
}),
new webpack.EnvironmentPlugin(['SENTRY_FE_DSN']),
],
};
if (process.env.ANALYZE) {
module.exports.plugins.push(new BundleAnalyzerPlugin());
}