mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { isCI, isDevelopment } from 'std-env'
|
|
import type { VitePWANuxtOptions } from '../modules/pwa/types'
|
|
|
|
const isPreview = process.env.PULL_REQUEST === 'true'
|
|
|
|
export const pwa: VitePWANuxtOptions = {
|
|
mode: isCI ? 'production' : 'development',
|
|
// disable PWA only when in preview mode
|
|
disable: /* temporarily test in CI isPreview || */ (isDevelopment && process.env.VITE_DEV_PWA !== 'true'),
|
|
scope: '/',
|
|
srcDir: './service-worker',
|
|
filename: 'sw.ts',
|
|
strategies: 'injectManifest',
|
|
injectRegister: false,
|
|
includeManifestIcons: false,
|
|
manifest: {
|
|
scope: '/',
|
|
id: '/',
|
|
name: `Elk${isCI ? isPreview ? ' (preview)' : '' : ' (dev)'}`,
|
|
short_name: `Elk${isCI ? isPreview ? ' (preview)' : '' : ' (dev)'}`,
|
|
description: `A nimble Mastodon Web Client${isCI ? isPreview ? ' (preview)' : '' : ' (development)'}`,
|
|
theme_color: '#ffffff',
|
|
icons: [
|
|
{
|
|
src: 'pwa-192x192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
src: 'pwa-512x512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
},
|
|
/*
|
|
{
|
|
src: 'logo.svg',
|
|
sizes: '250x250',
|
|
type: 'image/png',
|
|
purpose: 'any maskable',
|
|
},
|
|
*/
|
|
],
|
|
},
|
|
injectManifest: {
|
|
globPatterns: ['**/*.{js,json,css,html,txt,svg,png,ico,webp,woff,woff2,ttf,eot,otf,wasm}'],
|
|
globIgnores: ['emojis/**'],
|
|
},
|
|
devOptions: {
|
|
enabled: process.env.VITE_DEV_PWA === 'true',
|
|
type: 'module',
|
|
},
|
|
}
|