forked from niccokunzmann/schulcloud-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
60 lines (56 loc) · 1.38 KB
/
webpack.config.js
File metadata and controls
60 lines (56 loc) · 1.38 KB
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
const webpack = require('webpack');
const RebuildChangedPlugin = require('rebuild-changed-entrypoints-webpack-plugin');
const plugins = [
// By default, moment loads aaaall the locale files, which bloats the bundle size
// This plugin forces moment to only load the German locale
new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /de/),
];
const devPlugins = [
// Rebuild onlyl changed files
new RebuildChangedPlugin({
cacheDirectory: __dirname,
}),
];
if (process.env.NODE_ENV !== 'production') {
plugins.push(...devPlugins);
}
module.exports = {
mode: 'production',
module: {
rules: [
// All files that end on .js or .jsx are transpilled by babel
{
test: /\.(js|jsx)$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
query: {
presets: [['es2015']],
plugins: ['transform-react-jsx'],
},
},
// moment needs to be globally exposed in order to work with fullcalendar
{ test: require.resolve('moment'), loader: 'expose-loader?moment' },
],
},
optimization: {
splitChunks: {
cacheGroups: {
// Bundle react & react-dom into separate vendor-react bundle
react: {
test: /[\\/]node_modules[\\/](react\-dom|react)[\\/]/,
name: 'vendor-react',
chunks: 'all',
},
},
},
},
externals: {
jquery: 'jQuery',
'jquery-mousewheel': 'jQuery',
},
output: {
path: '/',
filename: '[name].js',
},
plugins,
};