You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
69 lines
1.8 KiB
import react from '@vitejs/plugin-react' |
|
import { execSync } from 'child_process' |
|
import path from 'path' |
|
import { defineConfig } from 'vite' |
|
import { VitePWA } from 'vite-plugin-pwa' |
|
|
|
// https://vite.dev/config/ |
|
export default defineConfig({ |
|
define: { |
|
__GIT_COMMIT__: JSON.stringify(execSync('git rev-parse --short HEAD').toString().trim()), |
|
__APP_VERSION__: JSON.stringify(require('./package.json').version) |
|
}, |
|
resolve: { |
|
alias: { |
|
'@': path.resolve(__dirname, './src') |
|
} |
|
}, |
|
plugins: [ |
|
react(), |
|
VitePWA({ |
|
registerType: 'autoUpdate', |
|
workbox: { |
|
globPatterns: ['**/*.{js,css,html,png,jpg,svg}'], |
|
globDirectory: 'dist/', |
|
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024, |
|
cleanupOutdatedCaches: true |
|
}, |
|
devOptions: { |
|
enabled: true |
|
}, |
|
manifest: { |
|
name: 'Jumble', |
|
short_name: 'Jumble', |
|
icons: [ |
|
{ |
|
src: '/pwa-192x192.png', |
|
sizes: '192x192', |
|
type: 'image/png', |
|
purpose: 'any' |
|
}, |
|
{ |
|
src: '/pwa-512x512.png', |
|
sizes: '512x512', |
|
type: 'image/png', |
|
purpose: 'any' |
|
}, |
|
{ |
|
src: '/pwa-maskable-192x192.png', |
|
sizes: '192x192', |
|
type: 'image/png', |
|
purpose: 'maskable' |
|
}, |
|
{ |
|
src: '/pwa-maskable-512x512.png', |
|
sizes: '512x512', |
|
type: 'image/png', |
|
purpose: 'maskable' |
|
} |
|
], |
|
start_url: '/', |
|
display: 'standalone', |
|
background_color: '#FFFFFF', |
|
theme_color: '#FFFFFF', |
|
description: |
|
'A user-friendly Nostr client focused on relay feed browsing and relay discovery' |
|
} |
|
}) |
|
] |
|
})
|
|
|