mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-21 03:44:21 +00:00
feat: PWA 默认不开启
This commit is contained in:
3
.env
3
.env
@@ -5,3 +5,6 @@ VITE_APP_API_BASE_URL=http://localhost:3002/
|
|||||||
|
|
||||||
# Whether long replies are supported, which may result in higher API fees
|
# Whether long replies are supported, which may result in higher API fees
|
||||||
VITE_GLOB_OPEN_LONG_REPLY=false
|
VITE_GLOB_OPEN_LONG_REPLY=false
|
||||||
|
|
||||||
|
# When you want to use PWA
|
||||||
|
VITE_GLOB_APP_PWA=false
|
||||||
|
3
src/typings/env.d.ts
vendored
3
src/typings/env.d.ts
vendored
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
interface ImportMetaEnv {
|
interface ImportMetaEnv {
|
||||||
readonly VITE_GLOB_API_URL: string;
|
readonly VITE_GLOB_API_URL: string;
|
||||||
readonly VITE_GLOB_API_TIMEOUT: string;
|
|
||||||
readonly VITE_APP_API_BASE_URL: string;
|
readonly VITE_APP_API_BASE_URL: string;
|
||||||
|
readonly VITE_GLOB_OPEN_LONG_REPLY: string;
|
||||||
|
readonly VITE_GLOB_APP_PWA: string;
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,13 @@
|
|||||||
import path from 'path'
|
import path from 'path'
|
||||||
|
import type { PluginOption } from 'vite'
|
||||||
import { defineConfig, loadEnv } from 'vite'
|
import { defineConfig, loadEnv } from 'vite'
|
||||||
import vue from '@vitejs/plugin-vue'
|
import vue from '@vitejs/plugin-vue'
|
||||||
import { VitePWA } from 'vite-plugin-pwa'
|
import { VitePWA } from 'vite-plugin-pwa'
|
||||||
|
|
||||||
export default defineConfig((env) => {
|
function setupPlugins(env: ImportMetaEnv): PluginOption[] {
|
||||||
const viteEnv = loadEnv(env.mode, process.cwd()) as unknown as ImportMetaEnv
|
const plugins = [vue()]
|
||||||
|
|
||||||
return {
|
if (env.VITE_GLOB_APP_PWA === 'true') {
|
||||||
resolve: {
|
|
||||||
alias: {
|
|
||||||
'@': path.resolve(process.cwd(), 'src'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
vue(),
|
|
||||||
VitePWA({
|
VitePWA({
|
||||||
injectRegister: 'auto',
|
injectRegister: 'auto',
|
||||||
manifest: {
|
manifest: {
|
||||||
@@ -24,8 +18,21 @@ export default defineConfig((env) => {
|
|||||||
{ src: 'pwa-512x512.png', sizes: '512x512', type: 'image/png' },
|
{ src: 'pwa-512x512.png', sizes: '512x512', type: 'image/png' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
}),
|
})
|
||||||
],
|
}
|
||||||
|
return plugins
|
||||||
|
}
|
||||||
|
|
||||||
|
export default defineConfig((env) => {
|
||||||
|
const viteEnv = loadEnv(env.mode, process.cwd()) as unknown as ImportMetaEnv
|
||||||
|
|
||||||
|
return {
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@': path.resolve(process.cwd(), 'src'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: setupPlugins(viteEnv),
|
||||||
server: {
|
server: {
|
||||||
host: '0.0.0.0',
|
host: '0.0.0.0',
|
||||||
port: 1002,
|
port: 1002,
|
||||||
|
Reference in New Issue
Block a user