Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nextcloud-libraries/nextcloud-vite-config
Shared Vite configuration for Nextcloud apps and libraries https://npmjs.org/@nextcloud/vite-config
https://github.com/nextcloud-libraries/nextcloud-vite-config
javascript nextcloud typescript vite vitejs
Last synced: 14 days ago
JSON representation
Shared Vite configuration for Nextcloud apps and libraries https://npmjs.org/@nextcloud/vite-config
- Host: GitHub
- URL: https://github.com/nextcloud-libraries/nextcloud-vite-config
- Owner: nextcloud-libraries
- Created: 2023-06-06T13:32:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-12T01:32:56.000Z (about 1 month ago)
- Last Synced: 2024-10-15T14:21:54.656Z (about 1 month ago)
- Topics: javascript, nextcloud, typescript, vite, vitejs
- Language: TypeScript
- Homepage:
- Size: 1.83 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSES/AGPL-3.0-or-later.txt
Awesome Lists containing this project
README
# `@nextcloud/vite-config`
[![REUSE status](https://api.reuse.software/badge/github.com/nextcloud-libraries/nextcloud-vite-config)](https://api.reuse.software/info/github.com/nextcloud-libraries/nextcloud-vite-config)
[![npm last version](https://img.shields.io/npm/v/@nextcloud/vite-config.svg?style=flat-square)](https://www.npmjs.com/package/@nextcloud/vite-config) [![Project documentation](https://img.shields.io/badge/documentation-online-blue?style=flat-square)](https://nextcloud-libraries.github.io/nextcloud-vite-config/)Shared Vite ⚡ config for Nextcloud apps and libraries, which also can be easily extended.
**Please note version 2+ is for Vue 3 only, for Vue 2.7 use the 1.x version.**
## API reference
The full API reference can be found on the [documentation](https://nextcloud-libraries.github.io/nextcloud-vite-config/).
## How to use
If your app uses an entry point for the main app and one for the settings page, then your default project tree will look like this:
```
css/
js/
lib/
src/
|- ...
|- main.js
|- settings.js
package.json
vite.config.js
```And your `vite.config.js` should look like this:
```js
import { createAppConfig } from '@nextcloud/vite-config'export default createAppConfig({
// entry points: {name: script}
main: 'src/main.js',
settings: 'src/settings.js',
})
```You can also modify the configuration, for example if you want to set an include path for the scss preprocessor:
```js
import { createAppConfig } from '@nextcloud/vite-config'
import { defineConfig } from 'vite'
import path from 'node:path'const yourOverrides = defineConfig({
css: {
preprocessorOptions: {
scss: {
includePaths: [
path.resolve(__dirname, './src/assets'),
],
},
},
}
})export default createAppConfig({
// entry points
main: 'src/main.js',
settings: 'src/settings.js',
}, {
// options
config: yourOverrides
})
```### Use with a library
There is also a configuration for libraries, this configuration will handle the output directory correctly and automatically mark all `dependencies` as external:```js
import { createLibConfig } from '@nextcloud/vite-config'const translations = //...
export default createLibConfig({
index: 'src/index.js',
}, {
replace: {
TRANSLATIONS: translations,
},
})
```## Notes
### Inlining / injecting CSS
You can enable inlining CSS code, but please note that this is handled differently for apps and libraries.
* Apps will inline the CSS by dynamically inject it as `script` tags
* Libraries will extract the CSS to the dist/assets directory and import it in the entry pointFor apps any styles can be injected in the JS by dynamically inject the styles in the document (creating `` tags).
But this only works in DOM environments, so for libraries this might not work (e.g. while testing in the Node environment).So for libraries the CSS will still be extracted by Vite, but the extracted CSS assets will be imported.
This way the library user can decide how to handle the imported CSS without relying on a DOM environment.