-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
45 lines (42 loc) · 986 Bytes
/
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
// @ts-check
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
/**
* @type {webpack.Configuration[]}
*/
const webpackConfigs = [
{
mode: 'development',
entry: './feature-hub/feature-app.js',
output: {
filename: 'feature-app.umd.js',
libraryTarget: 'umd',
libraryExport: 'default',
publicPath: '/'
}
},
{
mode: 'development',
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, 'feature-hub/integrator.html'),
title: 'Angular Feature App'
})
],
devServer: {
before: app => {
app.get('/feature-hub/*', (req, res) =>
res.sendFile(path.join(__dirname, '/', req.path))
);
}
},
entry: './feature-hub/integrator.js',
output: {
filename: 'integrator.js',
publicPath: '/'
}
}
];
module.exports = webpackConfigs;