-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite-electron.js
41 lines (38 loc) · 1 KB
/
vite-electron.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { defineConfig } from 'vite'
import mkcert from 'vite-plugin-mkcert'
import autoPreprocess from 'svelte-preprocess';
import typescript from '@rollup/plugin-typescript';
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { resolve, dirname } from 'path';
import { fileURLToPath } from 'url';
const __dirnameX = dirname(fileURLToPath(import.meta.url));
const production = !process.env.ROLLUP_WATCH;
// https://vitejs.dev/config/
export default defineConfig({
base: "./",
build:
{
outDir: "electron/dist"
},
server: { https: true },
output: {
// sourcemap: true, // <-- remove
sourcemap: !production // ,
// format: 'iife',
// name: 'app',
// file: 'public/build/bundle.js'
},
plugins: [
mkcert(),
svelte({
preprocess: autoPreprocess(),
compilerOptions: {
dev: !production
// customElement: true
}
}),
typescript({
sourceMap: !production,
inlineSources: !production
})]
})