FreeDATA/gui_vue/vite.config.ts

63 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-09-02 11:37:03 +00:00
import { defineConfig } from 'vite'
import electron from 'vite-plugin-electron'
import renderer from 'vite-plugin-electron-renderer'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
2023-10-03 13:16:51 +00:00
server: {
open: true,
port: 5173,
},
2023-09-05 09:22:00 +00:00
build: {
minify: false
},
2023-09-02 11:37:03 +00:00
plugins: [
vue(),
electron([
2023-09-05 13:28:58 +00:00
2023-09-02 11:37:03 +00:00
{
// Main-Process entry file of the Electron App.
entry: 'electron/main.ts',
},
2023-09-05 13:28:58 +00:00
/*
2023-09-02 11:37:03 +00:00
{
2023-09-05 09:22:00 +00:00
// Daemon-Process entry file of the Electron App.
entry: 'electron/sock.js',
},
{
// Daemon-Process entry file of the Electron App.
entry: 'electron/daemon.js',
},
{
// Daemon-Process entry file of the Electron App.
entry: 'electron/freedata.js',
},
{
entry: 'electron/preload-main.js',
2023-09-02 11:37:03 +00:00
onstart(options) {
2023-09-05 09:22:00 +00:00
// Notify the Renderer-Process to reload the page when the Preload-Scripts build is complete,
2023-09-02 11:37:03 +00:00
// instead of restarting the entire Electron App.
options.reload()
},
},
2023-09-05 13:28:58 +00:00
*/
2023-09-05 09:22:00 +00:00
{
2023-09-05 13:28:58 +00:00
entry: 'electron/preload.ts',
2023-09-05 09:22:00 +00:00
onstart(options) {
// Notify the Renderer-Process to reload the page when the Preload-Scripts build is complete,
// instead of restarting the entire Electron App.
options.reload()
2023-09-05 13:28:58 +00:00
2023-09-05 09:22:00 +00:00
},
2023-09-05 13:28:58 +00:00
2023-09-05 09:22:00 +00:00
},
2023-09-05 13:28:58 +00:00
2023-09-05 09:22:00 +00:00
],
),
2023-09-02 11:37:03 +00:00
renderer(),
],
})