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
263 B
JavaScript
11 lines
263 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
entry: path.join(__dirname, 'src', 'init.js'),
|
|
output: {
|
|
path: path.resolve(__dirname, './js'),
|
|
publicPath: '/js/',
|
|
filename: 'updatenotification.js',
|
|
jsonpFunction: 'webpackJsonpUpdatenotification'
|
|
}
|
|
}
|