forked from BlueBrain/nexus-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
165 lines (162 loc) · 3.97 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
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
const path = require('path');
const webpack = require('webpack');
const GitRevisionPlugin = require('git-revision-webpack-plugin');
const nodeExternals = require('webpack-node-externals');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const devMode = process.env.NODE_ENV !== 'production';
const gitRevisionPlugin = new GitRevisionPlugin({
versionCommand: 'describe --tags',
});
const config = [
{
name: 'client',
entry: {
bundle: ['./src/client/index.tsx'],
silent_refresh: ['./src/client/silent_refresh.ts'],
},
output: {
path: path.join(__dirname, 'dist/public/'),
filename: '[name].js',
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
alias: {
react: path.resolve('./node_modules/react'),
},
},
devtool: 'source-map',
mode: 'production',
optimization: {
minimizer: [new TerserPlugin()],
splitChunks: {
cacheGroups: {
antd: {
test: /[\\/]node_modules[\\/]((@ant-design).*)[\\/]/,
name: 'antd',
chunks: 'all',
},
antv: {
test: /[\\/]node_modules[\\/]((@antv).*)[\\/]/,
name: 'antv',
chunks: 'all',
},
},
},
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
},
{
test: /\.(le|sa|sc|c)ss$/,
use: [
devMode ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'less-loader',
options: {
javascriptEnabled: true,
},
},
],
},
{
test: /\.(jpg|png|svg)$/,
use: {
loader: 'file-loader',
options: {
outputPath: 'assets/',
publicPath: 'public/assets/',
},
},
},
{
test: /\.(ttf)$/,
use: {
loader: 'file-loader',
options: {
outputPath: 'assets/',
publicPath: devMode ? 'public/assets' : 'assets/',
},
},
},
{
test: /\.(hbs|txt)$/,
use: 'raw-loader',
},
],
},
plugins: [
gitRevisionPlugin,
new webpack.DefinePlugin({
__isBrowser__: true,
COMMIT_HASH: JSON.stringify(gitRevisionPlugin.commithash()),
Version: JSON.stringify(gitRevisionPlugin.version()),
}),
new MiniCssExtractPlugin(),
],
},
{
name: 'server',
entry: {
server: './src/server/index.tsx',
},
output: {
path: path.join(__dirname, 'dist/'),
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.(le|sa|sc|c)ss$/,
// we can ignore the .css files, handled in client config
loader: 'null-loader',
},
{
test: /\.(jpg|png|svg)$/,
use: {
loader: 'file-loader',
options: {
outputPath: '/public/assets/',
publicPath: `public/assets/`,
},
},
},
],
},
target: 'node',
node: {
__dirname: false,
},
externals: devMode ? [nodeExternals()] : [{ canvas: {} }],
plugins: [
new CopyWebpackPlugin(
[
{
from: 'plugins/',
to: 'public/plugins/',
ignore: ['.gitkeep'],
},
{
from: 'node_modules/pdfjs-dist/build/pdf.worker.min.js',
to: 'public/pdf.worker.min.js',
},
],
{ debug: true }
),
],
},
];
module.exports = config;