-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathconfig-overrides.js
68 lines (64 loc) · 2.05 KB
/
config-overrides.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
const { override, addWebpackPlugin, overrideDevServer } = require('customize-cra');
const path = require('path');
const fs = require('fs');
const CopyPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const processorDir = path.resolve(__dirname, 'src/processor');
const workerFiles = fs.readdirSync(processorDir).filter((file) => file.endsWith('processor.ts'));
const addDevServerCOOPReponseHeader = (config) => {
config.headers = {
...config.headers,
'Cross-Origin-Embedder-Policy': 'require-corp',
'Cross-Origin-Opener-Policy': 'same-origin'
};
config.devMiddleware = {
...config.devMiddleware,
writeToDisk: true,
};
return config;
};
module.exports = {
webpack: override(
addWebpackPlugin(
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, 'node_modules', '@zoom', 'videosdk', 'dist', 'lib'),
to: path.resolve(__dirname, 'public', 'lib')
}
]
})
),
(config) => {
const entries = {
main: path.resolve(__dirname, 'src/index.tsx')
};
workerFiles.forEach((file) => {
const workerName = path.basename(file, path.extname(file));
entries[workerName] = path.resolve(processorDir, file);
});
config.entry = entries;
config.output = {
...config.output,
filename: (pathData) => {
if (pathData.chunk.name !== 'main') {
return 'static/processors/[name].js';
}
return 'static/js/[name].[contenthash:8].js';
},
chunkFilename: 'static/js/[name].[contenthash:8].chunk.js',
path: path.resolve(__dirname, 'build'),
publicPath: '/',
};
const htmlWebpackPlugin = config.plugins.find(
(plugin) => plugin instanceof HtmlWebpackPlugin
);
// only contains main chunk
if (htmlWebpackPlugin) {
htmlWebpackPlugin.options.chunks = ['main'];
}
return config;
}
),
devServer: overrideDevServer(addDevServerCOOPReponseHeader)
};