-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebpack.config.js
50 lines (47 loc) · 1.29 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
/* eslint-env node */
const path = require('path');
const ilcWebpackPluginsFactory = require('ilc-sdk').WebpackPluginsFactory;
module.exports = {
entry: path.resolve(__dirname, 'src/client.js'),
output: {
filename: 'navbar.js',
libraryTarget: 'system',
path: path.resolve(__dirname, 'build'),
jsonpFunction: 'wpNavbarApp', // We need this to avoid conflicts of on-demand chunks in the global namespace
devtoolNamespace: '@portal/navbar',
},
mode: 'production',
module: {
rules: [
{parser: {system: false}},
{
test: /\.js?$/,
exclude: [path.resolve(__dirname, 'node_modules')],
loader: 'babel-loader',
},{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'file-loader',
},
],
},
],
},
resolve: {
modules: [
__dirname,
'node_modules',
],
},
plugins: ilcWebpackPluginsFactory().client,
devtool: 'source-map',
externals: [
/^single-spa$/,
/^react$/,
/^react\/lib.*/,
/^react-dom$/,
/.*react-dom.*/,
/^rxjs\/?.*$/,
],
};