1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-21 18:02:35 +01:00
lossless-cut/electron.vite.config.ts
2024-08-27 22:01:00 +02:00

37 lines
1.1 KiB
TypeScript

import { defineConfig, externalizeDepsPlugin } from 'electron-vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
main: {
// https://electron-vite.org/guide/dev#dependencies-vs-devdependencies
// For the main process and preload, the best practice is to externalize dependencies and only bundle our own code.
// However, until we use ESM for electron main, we need to include ESM-only deps in the bundle: (exclude from externalize)
plugins: [externalizeDepsPlugin({ exclude: ['p-map', 'execa', 'nanoid', 'file-type'] })],
build: {
target: 'node20.14',
sourcemap: true,
},
},
preload: {
// https://electron-vite.org/guide/dev#dependencies-vs-devdependencies
plugins: [externalizeDepsPlugin({ exclude: [] })],
build: {
target: 'node20.14',
sourcemap: true,
},
},
renderer: {
plugins: [react()],
build: {
target: 'chrome126',
sourcemap: true,
chunkSizeWarningLimit: 3e6,
},
server: {
port: 3001,
host: '127.0.0.1',
},
},
});