mirror of
https://github.com/nextcloud/server.git
synced 2026-02-10 14:25:20 -05:00
10 lines
212 B
JavaScript
10 lines
212 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'
|
|
}
|
|
}
|