-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack-generateConfig.config.js
50 lines (48 loc) · 1.3 KB
/
webpack-generateConfig.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
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
watch: false,
mode: 'production',
entry: {
extendedConfiguration: './src/luigi-config/extended/main.js',
basicConfiguration: './src/luigi-config/basic/basicConfiguration.js'
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'src/assets')
},
plugins: [
new webpack.BannerPlugin(
`
Don't be afraid!
This file was generated automatically and you should not modify it.
The documentation (located in /docs) will tell you how to modify Luigi configuration with pleasure.
`
),
new CopyWebpackPlugin([
// idpProvider OAuth2 callback asset
{
from: 'node_modules/@luigi-project/plugin-auth-oauth2/callback.html',
to: path.resolve(__dirname, 'src/assets') + '/auth-oauth2/'
},
// idpProvider OIDC assets
{
from: 'node_modules/@luigi-project/plugin-auth-oidc',
to: path.resolve(__dirname, 'src/assets') + '/auth-oidc/'
}
])
],
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
options: {
rootMode: 'root'
}
}
]
}
};