-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvite.config.js
More file actions
83 lines (81 loc) · 2.1 KB
/
Copy pathvite.config.js
File metadata and controls
83 lines (81 loc) · 2.1 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { VitePWA } from 'vite-plugin-pwa'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
VitePWA({
registerType: 'prompt',
includeAssets: ['favicon.ico', 'icon.svg', 'apple-touch-icon.png', 'pwa-192x192.png', 'pwa-512x512.png'],
manifest: {
name: 'meshRF',
short_name: 'meshRF',
description: 'Advanced RF Link Analysis and Mesh Planning',
theme_color: '#0a0a0f',
background_color: '#0a0a0f',
display: 'standalone',
scope: '/',
start_url: '/',
orientation: 'portrait-primary',
icons: [
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png'
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable'
}
]
},
workbox: {
runtimeCaching: [
{
urlPattern: ({ url }) => url.pathname.startsWith('/api'),
handler: 'NetworkOnly',
options: {
backgroundSync: {
name: 'api-queue',
options: {
maxRetentionTime: 5
}
}
}
}
]
},
devOptions: {
enabled: true,
type: 'module'
}
})
],
server: {
host: true, // Needed for Docker
allowedHosts: process.env.ALLOWED_HOSTS
? (process.env.ALLOWED_HOSTS === 'true' ? true : process.env.ALLOWED_HOSTS.split(','))
: undefined,
watch: {
usePolling: true, // Needed for Windows file system in Docker
},
proxy: {
'/api': {
target: process.env.API_TARGET || 'http://localhost:5001',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}},
test: {
globals: true,
environment: "jsdom",
}
})