mirror of
https://github.com/nextcloud/contacts.git
synced 2025-07-21 23:47:51 +00:00

Signed-off-by: greta <gretadoci@gmail.com> Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
17 lines
501 B
JavaScript
17 lines
501 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import path from 'path'
|
|
import { createAppConfig } from '@nextcloud/vite-config'
|
|
|
|
export default createAppConfig({
|
|
'main': path.join(__dirname, 'src', 'main.js'),
|
|
'files-action': path.join(__dirname, 'src', 'files-action.js'),
|
|
'admin-settings': path.join(__dirname, 'src', 'admin-settings.js'),
|
|
'oca': path.join(__dirname, 'src', 'oca.js'),
|
|
}, {
|
|
inlineCSS: false,
|
|
})
|