mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
// SPDX-FileCopyrightText: Tobias Knöppler <tobias@knoeppler.net>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
const path = require('path')
|
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
|
|
module.exports = {...webpackConfig,
|
|
...{
|
|
entry: {
|
|
admin: path.join(__dirname, 'src/main-admin')
|
|
}
|
|
}
|
|
}
|