2021-03-31 13:15:40 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
*
|
|
|
|
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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/',
|
2019-09-03 11:55:06 +03:00
|
|
|
filename: 'updatenotification.js',
|
2021-03-17 10:25:31 +03:00
|
|
|
jsonpFunction: 'webpackJsonpUpdatenotification',
|
|
|
|
},
|
2019-05-24 15:08:39 +03:00
|
|
|
}
|