-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathwebpack.prod.config.js
More file actions
110 lines (100 loc) · 4.21 KB
/
webpack.prod.config.js
File metadata and controls
110 lines (100 loc) · 4.21 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
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
/*=================================================================================================
// Project: CADS/MADS - An Integrated Web-based Visual Platform for Materials Informatics
// Hokkaido University (2018-)
// Last Update: Q3 2023
// ________________________________________________________________________________________________
// Authors: Mikael Nicander Kuwahara (Lead Developer) [2021-]
// Jun Fujima (Former Lead Developer) [2018-2021]
// ________________________________________________________________________________________________
// Description: Settings for webpacks static module bundler for this app if in production mode
// ------------------------------------------------------------------------------------------------
// Notes: This is the additional settings config used by production deployments
// ------------------------------------------------------------------------------------------------
// References: 'webpack.base.config' and some additional external libraries
=================================================================================================*/
//-------------------------------------------------------------------------------------------------
// Load required libraries
//-------------------------------------------------------------------------------------------------
const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
const BundleTracker = require('webpack-bundle-tracker');
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const baseConfig = require('./webpack.base.config');
//-------------------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------
// Add and change the various configs according to the need of this deployment mode
//-------------------------------------------------------------------------------------------------
baseConfig[0].mode = 'production';
baseConfig[1].mode = 'production';
baseConfig[1].entry = ['whatwg-fetch', './assets/js/index.js'];
baseConfig[0].output.publicPath = '/static/bundles/';
baseConfig[1].output = {
path: path.resolve('./assets/bundles/'),
publicPath: '/static/bundles/',
filename: '[name]-[contenthash].js',
};
baseConfig[1].module.rules.push(
{
test: /\.jsx?$/,
exclude: /node_modules\/(?!@bokeh\/bokehjs\/)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react'],
},
},
},
{
test: /\.(woff(2)?|eot|ttf)(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext]',
},
},
{
test: require.resolve('jquery'),
loader: 'expose-loader',
options: { exposes: ['$', 'jQuery', 'jquery'] },
}
);
baseConfig[1].optimization = { minimize: true };
baseConfig[1].plugins = [
new webpack.DefinePlugin({
// removes React warnings
'process.env': {
NODE_ENV: JSON.stringify('production'),
},
}),
new MiniCssExtractPlugin({
filename: '[name]-[contenthash].css',
}),
new BundleTracker({
path: __dirname,
filename: './assets/bundles/webpack-stats.json',
}),
new webpack.LoaderOptionsPlugin({
options: {
context: __dirname,
postcss: [autoprefixer],
},
}),
new webpack.ProvidePlugin({
Tether: 'tether',
'window.Tether': 'tether',
Popper: ['popper.js', 'default'],
process: 'process/browser',
Alert: 'exports-loader?Alert!bootstrap/js/dist/alert',
Button: 'exports-loader?Button!bootstrap/js/dist/button',
Carousel: 'exports-loader?Carousel!bootstrap/js/dist/carousel',
Collapse: 'exports-loader?Collapse!bootstrap/js/dist/collapse',
Dropdown: 'exports-loader?Dropdown!bootstrap/js/dist/dropdown',
Modal: 'exports-loader?Modal!bootstrap/js/dist/modal',
Popover: 'exports-loader?Popover!bootstrap/js/dist/popover',
Scrollspy: 'exports-loader?Scrollspy!bootstrap/js/dist/scrollspy',
Tab: 'exports-loader?Tab!bootstrap/js/dist/tab',
Tooltip: 'exports-loader?Tooltip!bootstrap/js/dist/tooltip',
Util: 'exports-loader?Util!bootstrap/js/dist/util',
}),
];
module.exports = baseConfig;