mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-24 20:30:18 +08:00
32 lines
713 B
TypeScript
32 lines
713 B
TypeScript
import { VitePWA } from 'vite-plugin-pwa';
|
|
import type { Plugin } from 'vite';
|
|
import { isProdFn, ViteEnv } from '../../utils';
|
|
|
|
export function setupPwaPlugin(plugins: Plugin[], env: ViteEnv) {
|
|
const { VITE_USE_PWA } = env;
|
|
|
|
const pwaPlugin = VitePWA({
|
|
manifest: {
|
|
name: 'Vben Admin',
|
|
short_name: 'vben_admin',
|
|
icons: [
|
|
{
|
|
src: './resource/img/pwa-192x192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
src: './resource/img/pwa-512x512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
if (isProdFn() && VITE_USE_PWA) {
|
|
plugins.push(pwaPlugin);
|
|
}
|
|
return plugins;
|
|
}
|