2018-06-08 03:52:27 -04:00
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2019-05-24 08:08:39 -04:00
|
|
|
entry: path.join(__dirname, 'src', 'main.js'),
|
|
|
|
|
output: {
|
|
|
|
|
path: path.resolve(__dirname, './js'),
|
|
|
|
|
publicPath: '/js',
|
|
|
|
|
filename: 'oauth2.js'
|
|
|
|
|
}
|
2018-06-08 03:52:27 -04:00
|
|
|
}
|