aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/config/manifest.ts
blob: 3cec777cfc17b8ddd597b55ed69b906e89105699 (plain) (blame)
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
import type { ManifestOptions } from 'vite-plugin-pwa';

const manifest: Partial<ManifestOptions> = {
  lang: 'en-US',
  name: 'Refinery',
  short_name: 'Refinery',
  description: 'An efficient graph sovler for generating well-formed models',
  theme_color: '#f5f5f5',
  display_override: ['window-controls-overlay'],
  display: 'standalone',
  background_color: '#21252b',
  icons: [
    {
      src: 'icon-192x192.png',
      sizes: '192x192',
      type: 'image/png',
      purpose: 'any maskable',
    },
    {
      src: 'icon-512x512.png',
      sizes: '512x512',
      type: 'image/png',
      purpose: 'any maskable',
    },
    {
      src: 'icon-any.svg',
      sizes: 'any',
      type: 'image/svg+xml',
      purpose: 'any maskable',
    },
    {
      src: 'mask-icon.svg',
      sizes: 'any',
      type: 'image/svg+xml',
      purpose: 'monochrome',
    },
  ],
};

export default manifest;