This package has been deprecated

Author message:

Please use `@nextcloud/vite-config` instead

@susnux/nextcloud-vite-config
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-beta.16 • Public • Published

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:

import { createAppConfig } from '@susnux/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:

import { createAppConfig } from '@susnux/nextcloud-vite-config'
import { mergeConfig } 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 allows to define external dependencies:

import { createLibConfig } from '@susnux/nextcloud-vite-config'

const translations = //...

export default createLibConfig({
    index: 'src/index.js',
}, {
    defines: {
        TRANSLATIONS: translations,
    },
    externalDependencies: [
        // mark 'vue' as external
        'vue',
        // mark all paths starting with `@nextcloud/vue` as external
        /^@nextcloud\/vue/
    ]
})

Readme

Keywords

none

Package Sidebar

Install

npm i @susnux/nextcloud-vite-config

Weekly Downloads

1

Version

1.0.0-beta.16

License

AGPL-3.0-or-later

Unpacked Size

63.7 kB

Total Files

17

Last publish

Collaborators

  • susnux