You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/comments/webpack.js

14 lines
284 B

const path = require('path')
module.exports = {
entry: path.join(__dirname, 'src', 'comments.js'),
output: {
path: path.resolve(__dirname, './js'),
publicPath: '/js/',
filename: 'comments.js',
jsonpFunction: 'webpackJsonpComments'
},
externals: {
jquery: 'jQuery'
}
}