Files
LivingDexTracker/pwa-assets.config.ts
T
2024-04-14 16:03:01 +01:00

29 lines
575 B
TypeScript

import {
createAppleSplashScreens,
defineConfig,
minimal2023Preset
} from '@vite-pwa/assets-generator/config';
export default defineConfig({
headLinkOptions: {
preset: '2023'
},
preset: {
...minimal2023Preset,
appleSplashScreens: createAppleSplashScreens(
{
padding: 0.3,
resizeOptions: { fit: 'contain', background: 'white' },
darkResizeOptions: { fit: 'contain', background: 'black' },
linkMediaOptions: {
log: true,
addMediaScreen: true,
xhtml: true
}
},
['iPad Air 9.7"']
)
},
images: 'static/favicon.png'
});