e6e73b636f
This avoids issues when multiple entrypoints try to asynchronously load chunks on the same page Signed-off-by: Julius Härtl <jus@bitgrid.net>
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
entry: path.join(__dirname, 'src', 'settings.js'),
|
|
output: {
|
|
path: path.resolve(__dirname, 'js'),
|
|
publicPath: '/js',
|
|
filename: 'settings.js',
|
|
jsonpFunction: 'webpackJsonpTwofactorBackupcodes'
|
|
}
|
|
}
|