-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvite.config.ts
More file actions
149 lines (136 loc) · 3.32 KB
/
Copy pathvite.config.ts
File metadata and controls
149 lines (136 loc) · 3.32 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
import path from 'node:path'
import Vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import VueMacros from 'unplugin-vue-macros/vite'
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import WebfontDownload from 'vite-plugin-webfont-dl'
import generateSitemap from 'vite-ssg-sitemap'
export default defineConfig({
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
},
},
define: {
VITE_APP_VERSION: JSON.stringify(process.env.npm_package_version),
},
// https://vitejs.dev/config/dep-optimization-options#optimizedeps-include
optimizeDeps: {
include: [
'@cznethub/cznet-vue-core',
'@fortawesome/fontawesome-free',
],
},
plugins: [
VueMacros({
plugins: {
vue: Vue({
include: [/\.vue$/],
}),
},
}),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: [
'vue',
'@vueuse/head',
'@vueuse/core',
{
// add any other imports you were relying on
'vue-router/auto': ['useLink'],
},
],
dts: 'src/auto-imports.d.ts',
dirs: [
'src/composables',
'src/stores',
],
vueTemplate: true,
}),
// https://github.com/antfu/unplugin-vue-components
Components({
extensions: ['vue'],
// allow auto import
include: [/\.vue$/, /\.vue\?vue/],
dts: 'src/components.d.ts',
}),
// https://github.com/antfu/vite-plugin-pwa
VitePWA({
registerType: 'autoUpdate',
// includeAssets: ['favicon.svg', 'safari-pinned-tab.svg', 'img/*.png', 'img/*.jpg', 'img/*.svg', 'assets/*'],
selfDestroying: true,
workbox: {
navigateFallbackDenylist: [/^\/api/, /^\/openapi.json/, /^\/docs/, /^\/redoc/],
},
manifest: {
name: 'CZ Hub',
short_name: 'CZ Hub',
theme_color: '#ffffff',
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',
},
],
},
}),
// https://github.com/feat-agency/vite-plugin-webfont-dl
WebfontDownload(),
],
// https://github.com/vitest-dev/vitest
test: {
include: ['test/**/*.test.ts'],
environment: 'jsdom',
server: {
deps: {
inline: [/vuetify/, /@cznethub/],
},
},
},
// https://vitejs.dev/config/preview-options
preview: {
port: 8080,
},
// https://github.com/antfu/vite-ssg
ssgOptions: {
script: 'async',
formatting: 'minify',
onFinished() {
generateSitemap()
},
},
ssr: {
// TODO: workaround until they support native ESM
noExternal: ['workbox-window'],
},
server: {
host: true,
port: 8080,
proxy: {
'/sockjs-node': {
target: 'ws://127.0.0.1:8081',
ws: true,
},
},
hmr: {
path: '/sockjs-node',
port: 8081,
clientPort: 443,
},
allowedHosts: ['host.docker.internal'],
},
})