13 строки
392 B
JavaScript
13 строки
392 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
const path = require('path')
|
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
|
|
webpackConfig.entry.admin = path.join(__dirname, 'src', 'admin')
|
|
webpackConfig.entry.dashboard = path.join(__dirname, 'src', 'dashboard')
|
|
|
|
module.exports = webpackConfig
|