-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
71 lines (70 loc) · 2.2 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
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tsconfigPaths from 'vite-tsconfig-paths';
import VitePluginHtmlEnv from 'vite-plugin-html-env';
import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig({
plugins: [
react(),
tsconfigPaths(),
VitePluginHtmlEnv({
compiler: true,
}),VitePWA({
srcDir: 'src',
filename: 'service-worker.js', // 수정한 서비스 워커 파일 경로
strategies: 'injectManifest', // 사용자 정의 서비스 워커 사용
injectManifest: {
swSrc: 'src/service-worker.js', // 소스 파일 경로
swDest: 'dist/service-worker.js', // 빌드 후 출력 경로
},
registerType: 'autoUpdate',
devOptions:{enabled: true, type: 'module'}, // vite dev 로 돌려도 PWA 까지 볼 수 있게끔 주는 옵션
includeAssets: [
'/icon/launchericon-48-48.png',
'/icon/launchericon-96-96.png',
'/icon/launchericon-192-192.png',
'/icon/launchericon-512-512.png',
],
manifest: {
name: 'sportify',
short_name: 'sportify',
start_url: "/",
background_color: "#FFFFFF",
display: "fullscreen",
theme_color: '#FFFFFF',
icons:[
{
src: '/icon/launchericon-48-48.png',
sizes: '48x48',
type: 'image/png',
purpose: "any maskable"
},
{
src: '/icon/launchericon-96-96.png',
sizes: '96x96',
type: 'image/png',
purpose: "any maskable"
},
{
src: '/icon/launchericon-180-180.png',
sizes: '180x180',
type: 'image/png',
purpose: "any maskable"
},
{
src: '/icon/launchericon-192-192.png',
sizes: '192x192',
type: 'image/png',
purpose: "any maskable"
},
{
src: '/icon/launchericon-512-512.png',
sizes: '512x512',
type: 'image/png',
purpose: "any maskable"
},
]
}
})
],
});