mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-21 09:52:33 +01:00
37 lines
1.1 KiB
TypeScript
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',
|
|
},
|
|
},
|
|
});
|