-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
48 lines (47 loc) · 1.38 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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { VitePWA } from 'vite-plugin-pwa'
import mkcert from 'vite-plugin-mkcert';
import path from "path"
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
react(), mkcert(), tailwindcss(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['pwa-512x512.png'], // 添加图标到缓存
workbox: {
globPatterns: ['**/*.{js,css,html,png,jpg,jpeg,gif,svg,woff,woff2}'] // 缓存所有常见的静态资源
},
manifest: {
name: 'text-calcer',
short_name: 'text-calcer',
description: 'Description',
theme_color: '#ffffff',
// orientation: "landscape-primary", // 优先横屏
icons: [
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
}
],
},
})
],
base: '/',
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
https: {}, // 开启 HTTPS
port: 3000,
host: true,
},
preview: {
port: 22006,
host:true // 允许外部访问
},
})