Create a vite config for your nextcloud app
export default createAppConfig({ main: path.resolve(path.join('src', 'main.js')), settings: path.resolve(path.join('src', 'settings.js')),}) Copy
export default createAppConfig({ main: path.resolve(path.join('src', 'main.js')), settings: path.resolve(path.join('src', 'settings.js')),})
Entry points of your app
App related options for the vite config
The vite config
Create a vite config for your nextcloud app
Example