mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
entry: path.join(__dirname, 'src', 'main.js'),
|
|
output: {
|
|
path: path.resolve(__dirname, './js'),
|
|
publicPath: '/js',
|
|
filename: 'oauth2.js'
|
|
}
|
|
}
|