forked from agonza1/OpenVideoCall-Web-Agora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
149 lines (147 loc) · 3.85 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
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const utils = require('./webpack.utils');
module.exports = {
entry: utils.getEntry(),
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/',
filename: 'assets/js/[name].[hash:7].js'
},
module: {
rules: utils.styleLoaders().concat([
{
test: /\.html$/,
loader: 'html-loader'
},
{
test: /\.(js|jsx|mjs)$/,
include: path.resolve(__dirname, 'src'),
loader: require.resolve('babel-loader'),
options: {
cacheDirectory: true
}
},
{
test: [/\.(bmp|gif|jpe?g|png|svg)(\?.*)?$/],
loader: require.resolve('url-loader'),
options: {
limit: 10000,
name: 'assets/img/[name].[hash:7].[ext]'
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'assets/media/[name].[hash:7].[ext]'
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'assets/fonts/[name].[hash:7].[ext]'
}
},
{
test: /\.(json|pb)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 1000000,
name: 'assets/tensorflow/[name].[hash:7].[ext]'
}
}
])
},
resolve: {
alias: {
'@': path.join(__dirname, './src')
},
extensions: ['*', '.js', '.json', '.pb']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map',
plugins: [
// New webpack.ProvidePlugin({
// $: 'jquery',
// jQuery: 'jquery',
// 'window.jQuery': 'jquery'
// }),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, './static'),
to: 'assets/',
ignore: ['.*']
}
])
].concat(utils.getHtml())
};
if (process.env.NODE_ENV === 'production') {
module.exports.output.publicPath = './';
module.exports.devtool = '#source-map';
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new CleanWebpackPlugin(['dist']),
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
}),
// Extract css into its own file
new ExtractTextPlugin({
filename: 'assets/css/[name].[hash:7].css'
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: {
safe: true
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function(module, _) {
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(path.join(__dirname, './node_modules')) === 0
);
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
chunks: ['vendor']
}),
new webpack.BannerPlugin({
banner: `console.log("Last modification time: ${new Date().toLocaleString()}");`,
raw: true,
entryOnly: true,
test: /\.(js|jsx|mjs)$/
})
]);
}