-
-
Notifications
You must be signed in to change notification settings - Fork 418
/
Copy pathvite.config.ts
144 lines (134 loc) · 4.19 KB
/
vite.config.ts
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import vue from '@vitejs/plugin-vue2'
import version from 'vite-plugin-package-version'
import { defineConfig } from 'vite'
import Components from 'unplugin-vue-components/vite'
import { VuetifyResolver } from 'unplugin-vue-components/resolvers'
import { checker } from 'vite-plugin-checker'
import path from 'path'
import buildVersion from './src/plugins/build-version'
import buildReleaseInfo from './src/plugins/build-release_info'
import { VitePWA, VitePWAOptions } from 'vite-plugin-pwa'
import postcssNesting from 'postcss-nesting'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
const PWAConfig: Partial<VitePWAOptions> = {
registerType: 'autoUpdate',
includeAssets: ['fonts/**/*.woff2', 'img/**/*.svg', 'img/**/*.png'],
manifest: {
name: 'Mainsail',
short_name: 'Mainsail',
theme_color: '#D51F26',
background_color: '#121212',
icons: [
{
src: '/img/icons/icon-192-maskable.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/img/icons/icon-512-maskable.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/img/icons/icon-512-maskable.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
],
},
workbox: {
globPatterns: ['**/*.{js,css,html,woff,woff2,png,svg}'],
navigateFallbackDenylist: [/^\/(access|api|printer|server|websocket)/, /^\/webcam[2-4]?/],
runtimeCaching: [
{
urlPattern: (options) => options.url.pathname.startsWith('/config.json'),
handler: 'StaleWhileRevalidate',
options: {
cacheName: 'config.json',
},
},
],
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024,
},
/* enable sw on development */
devOptions: {
enabled: true,
type: 'module',
suppressWarnings: true,
},
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
VitePWA(PWAConfig),
buildVersion(),
buildReleaseInfo(),
vue(),
version(),
checker({
typescript: {
root: path.resolve(__dirname),
buildMode: false,
},
}),
Components({
dts: true, // enabled by default if `typescript` is installed
resolvers: [VuetifyResolver()],
}),
VueI18nPlugin({
strictMessage: false, // allow HTML tags in translation
escapeHtml: false, // allow HTML tags in translation
}),
],
css: {
postcss: {
plugins: [postcssNesting()],
},
},
build: {
target: 'safari12',
rollupOptions: {
output: {
manualChunks: (id: string) => {
if (id.includes('node_modules')) {
// split codemirror into its own chunk
if (id.includes('/codemirror/') || id.includes('/@codemirror/')) {
return 'codemirror'
}
// split these libs into their own chunks
const chunkedLibs = ['vuetify', 'echarts', 'overlayscrollbars']
for (const lib of chunkedLibs) {
if (id.includes(`/node_modules/${lib}/`)) {
return lib.replace('.js', '')
}
}
}
},
},
},
commonjsOptions: {
transformMixedEsModules: true,
},
},
envPrefix: 'VUE_',
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
stream: 'stream-browserify',
events: 'events',
},
},
optimizeDeps: {
include: ['events'],
esbuildOptions: {
define: {
global: 'globalThis',
},
},
},
server: {
host: '0.0.0.0',
port: 8080,
},
})