-
-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathvite.config.ts
More file actions
166 lines (155 loc) · 4.76 KB
/
vite.config.ts
File metadata and controls
166 lines (155 loc) · 4.76 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
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'
const PWAConfig: Partial<VitePWAOptions> = {
registerType: 'autoUpdate',
includeAssets: ['fonts/**/*.woff2', 'img/**/*.svg', 'img/**/*.png'],
manifest: {
name: 'Mainsail',
short_name: 'Mainsail',
description: 'Web interface for Klipper 3D printer firmware',
theme_color: '#D51F26',
display: 'standalone',
start_url: '/',
background_color: '#121212',
icons: [
{
src: '/img/icons/icon-192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/img/icons/icon-192-maskable.png',
sizes: '192x192',
type: 'image/png',
purpose: 'maskable',
},
{
src: '/img/icons/icon-512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/img/icons/icon-512-maskable.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
},
workbox: {
globPatterns: ['**/*.{js,css,html,woff,woff2,png,svg}'],
navigateFallbackDenylist: [/^\/(access|api|printer|server|websocket)/, /^\/webcam[2-4]?/],
runtimeCaching: [
{
urlPattern: /\/config\.json$/,
handler: 'StaleWhileRevalidate',
options: {
cacheName: 'config.json',
cacheableResponse: {
statuses: [0, 200],
},
},
},
],
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()],
}),
],
css: {
preprocessorOptions: {
sass: {
silenceDeprecations: ['import', 'global-builtin', 'slash-div', 'if-function'],
quietDeps: true,
},
scss: {
silenceDeprecations: ['import', 'global-builtin', 'slash-div', 'if-function'],
quietDeps: true,
},
},
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,
},
test: {
environment: 'node',
include: ['tests/**/*.spec.ts'],
},
})