nextcloud-server/apps/updatenotification/webpack.js

12 lines
265 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',
},
}