09a3d3ab17
Copilot Setup Steps / copilot-setup-steps (push) Failing after 2s
Python check requirements.txt / check-requirements (push) Has been cancelled
Python Type-Check / python type-check (push) Has been cancelled
Update Operations Documentation / update-ops-docs (push) Has been cancelled
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Has been cancelled
28 lines
638 B
TypeScript
28 lines
638 B
TypeScript
import { defineConfig } from '@vite-pwa/assets-generator/config';
|
|
import { FAVICON_COLORS, PWA_ASSET_GENERATOR } from './src/lib/constants/pwa';
|
|
import { writeThemeFavicons } from './scripts/favicon-colorize';
|
|
|
|
writeThemeFavicons(FAVICON_COLORS.LIGHT, FAVICON_COLORS.DARK, {
|
|
padding: PWA_ASSET_GENERATOR.FAVICON_PADDING
|
|
});
|
|
|
|
export default defineConfig({
|
|
headLinkOptions: {
|
|
preset: '2023'
|
|
},
|
|
preset: {
|
|
transparent: {
|
|
sizes: [],
|
|
favicons: [[48, 'favicon-dark.ico']],
|
|
padding: PWA_ASSET_GENERATOR.FAVICON_PADDING
|
|
},
|
|
maskable: {
|
|
sizes: []
|
|
},
|
|
apple: {
|
|
sizes: []
|
|
}
|
|
},
|
|
images: ['static/favicon-dark.svg']
|
|
});
|