0.1.1 • Published 1 year ago

nuxt-plugin-electron v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

nuxt-plugin-electron

Integrate Vite and Electron

NPM version NPM Downloads

screenshort.png

Install

npm i nuxt-plugin-electron -D

Examples

Usage

nuxt.config.ts

import { defineNuxtConfig } from 'nuxt/config'
import { withElectron } from 'nuxt-plugin-electron'

const nuxtConfig = defineNuxtConfig({})

export default withElectron({
  include: ['electron'],
})(nuxtConfig)