aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/config/manifest.ts
blob: 1822dc7cb01ee5740920d9aba1fcc3ceac362a1c (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
41
42
43
44
45
46
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import type { ManifestOptions } from 'vite-plugin-pwa';

const manifest: Partial<ManifestOptions> = {
  lang: 'en-US',
  name: 'Refinery',
  short_name: 'Refinery',
  description: 'An efficient graph solver 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;