master
 1import {
 2  createAppleSplashScreens,
 3  defineConfig,
 4  minimal2023Preset,
 5} from '@vite-pwa/assets-generator/config';
 6
 7export default defineConfig({
 8  headLinkOptions: {
 9    preset: '2023',
10  },
11  preset: {
12    ...minimal2023Preset,
13    appleSplashScreens: createAppleSplashScreens(
14      {
15        padding: 0.3,
16        resizeOptions: { fit: 'contain', background: 'white' },
17        darkResizeOptions: { fit: 'contain', background: 'black' },
18        linkMediaOptions: {
19          log: true,
20          addMediaScreen: true,
21          xhtml: true,
22        },
23      },
24      ['iPad Air 9.7"']
25    ),
26  },
27  images: 'public/favicon.svg',
28});