-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.js
44 lines (43 loc) · 1.26 KB
/
vite.config.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
42
43
44
import { sentrySvelteKit } from "@sentry/sveltekit";
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { SvelteKitPWA } from '@vite-pwa/sveltekit'
export default defineConfig({
plugins: [sentrySvelteKit({
sourceMapsUploadOptions: {
org: "rastreosat-jo",
project: "javascript-sveltekit",
url: "https://sentry.io/"
}
}), sveltekit(), SvelteKitPWA({
manifest: {
short_name: 'Config',
name: 'Configurator',
theme_color: '#A5371B',
icons: [
{
src: 'pwa-64x64.png',
sizes: '64x64',
type: 'image/png',
},
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
]
}
})],
server: {
proxy: {
'/api/socket': 'ws://' + process.env.VITE_TRACCAR_SERVER,
'/api': 'http://' + process.env.VITE_TRACCAR_SERVER
}
}
});