diff options
| author | Ruben D. <ruben@winterrific.net> | 2026-03-16 20:32:36 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2026-03-24 20:21:27 +0100 |
| commit | 5e8255f28aa4969c3015a305bc83f63f70741627 (patch) | |
| tree | 0bf7a0ef2353900a94f3cdf3b584e2eaaa4f42b2 /client/simple/vite.config.ts | |
| parent | 3dc4d5daa88830595c1c42bf5dc722b6d3565767 (diff) | |
[MOD] generate manifest PWA icons (#5859)
Diffstat (limited to 'client/simple/vite.config.ts')
| -rw-r--r-- | client/simple/vite.config.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/client/simple/vite.config.ts b/client/simple/vite.config.ts index 34cb6cdfd..96230281d 100644 --- a/client/simple/vite.config.ts +++ b/client/simple/vite.config.ts @@ -132,6 +132,28 @@ export default { } ]), + // SearXNG PWA Icons (static) + plg_svg2png( + [ + { + src: `${PATH.brand}/searxng-wordmark.svg`, + dest: `${PATH.dist}/img/512.png` + } + ], + 512, + 512 + ), + plg_svg2png( + [ + { + src: `${PATH.brand}/searxng-wordmark.svg`, + dest: `${PATH.dist}/img/192.png` + } + ], + 192, + 192 + ), + // -- svg plg_svg2svg( [ |
