12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
|
const path = require('path')
|
||
|
|
||
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
||
|
|
||
|
webpackConfig.entry = {
|
||
|
"adminSettings": {
|
||
|
import: path.join(__dirname, 'src', 'adminSettings.js'),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = webpackConfig
|