2019-05-24 15:08:39 +03:00
|
|
|
const path = require('path')
|
2018-06-07 09:35:00 +03:00
|
|
|
|
|
|
|
module.exports = {
|
2018-12-14 13:03:09 +03:00
|
|
|
entry: path.join(__dirname, 'src', 'init.js'),
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, './js'),
|
|
|
|
publicPath: '/js/',
|
|
|
|
filename: 'updatenotification.js'
|
|
|
|
}
|
2019-05-24 15:08:39 +03:00
|
|
|
}
|