Skip to content

Releases: electron-vite/vite-plugin-electron

v0.4.4

21 May 02:19
Compare
Choose a tag to compare

🥳 New member @youngleish

v0.4.3

19 Apr 00:14
Compare
Choose a tag to compare

Docs

  1. Add usage GIF

vite-plugin-electron.gif

  1. vite-plugin-electron/polyfill-exports

v0.4.2

14 Apr 02:45
e16808d
Compare
Choose a tag to compare

Features

  • vite-plugin-electron/polyfill-exports | 411d253

Chore

  • Classified according to serve and build

Issues

electron-vite/electron-vite-vue#103

PR

#2

v0.4.1

11 Apr 11:19
Compare
Choose a tag to compare

Features

Feat build rollup external #1 | @magicdawn

v0.4.0

10 Apr 01:03
Compare
Choose a tag to compare

Refactor

  • Remove Configuration['main']['nodeIntegration'] and vite-plugin-electron/renderer needs to be explicitly introduced

    // vite.config.ts
    
    import electron from 'vite-plugin-electron'
    import electronRenderer from 'vite-plugin-electron/renderer'
    import electronConfig from './vite-electron.config'
    
    export {
      plugins: [
        electron(electronConfig),
        // For use Electron, Node.js API in Renderer-process
        electronRenderer(),
      ],
    }
  • c9b230a | better code logic

v0.3.1

09 Apr 03:08
Compare
Choose a tag to compare

Fixes

  • f1a07bc | Support custom build.outDir.

v0.3.0

09 Apr 01:33
Compare
Choose a tag to compare

Features

  • aeb75a7 | Support multi preload entry.