-
Notifications
You must be signed in to change notification settings - Fork 24
/
webpack.config.prod.js
128 lines (126 loc) · 3.32 KB
/
webpack.config.prod.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
const path = require("path");
const webpack = require("webpack");
const package = require("./package.json");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const TerserPlugin = require("terser-webpack-plugin");
try {
require('os').networkInterfaces();
} catch (e) {
require('os').networkInterfaces = () => ({});
}
module.exports = {
mode: "production",
entry: ["./src/app/VoxeetReactComponents.js"],
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
output: {
path: path.join(__dirname, "dist"),
filename: "bundle.js",
libraryTarget: "umd",
},
externals: {
'@voxeet/voxeet-web-sdk': true,
react: true,
'react-dom': true,
},
module: {
rules: [
{
test: /.jsx?$/,
loader: "babel-loader",
exclude: /node_modules/,
include: path.resolve(__dirname),
},
{
test: /\.(less)$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'less-loader'
],
},
{
test: /\.mp3$/,
exclude: /node_modules/,
type: 'asset/resource',
generator: {
filename: 'sounds/[name][ext][query]'
}
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.otf(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]'
}
},
{
test: /\.svg$/,
type: 'asset/resource',
generator: {
filename: 'images/[name][ext][query]'
},
},
{
test: /\.(jpg|jpeg|gif|png)$/,
exclude: /node_modules/,
type: 'asset/resource',
generator: {
filename: 'images/[name][ext][query]'
}
},
],
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: `"production"`,
},
__VERSION__: JSON.stringify(package.version),
}),
new MiniCssExtractPlugin({
filename: 'voxeet-react-components.css'
}),
// new webpack.NoEmitOnErrorsPlugin(),
new CopyWebpackPlugin({
patterns:[
{ from: "./node_modules/@voxeet/voxeet-web-sdk/dist/dvwc_impl.wasm", noErrorOnMissing: true },
{ from: "./node_modules/@voxeet/voxeet-web-sdk/dist/voxeet-dvwc-worker.js", noErrorOnMissing: true },
{ from: "./node_modules/@voxeet/voxeet-web-sdk/dist/voxeet-worklet.js", noErrorOnMissing: true },
{ from: "./node_modules/@voxeet/voxeet-web-sdk/dist/vsl_impl.pkgwvsl", noErrorOnMissing: true },
{ from: "./node_modules/@voxeet/voxeet-web-sdk/dist/vsl_impl.wasm", noErrorOnMissing: true },
]
}),
],
};