diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-02-05 13:28:19 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-02-28 12:27:41 +0100 |
| commit | 872e09d1033112c78497a2719025a1e590af4ee9 (patch) | |
| tree | 189d7fa298f164c3eb5e5e600356746f3791bab4 /client/simple/vite.config.js | |
| parent | 189dd0155df60c98b5d7de73b873c8ad444ff931 (diff) | |
[web-client] simple theme: move SVGs to client/simple/src and deploy to static by plg_svg2svg
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'client/simple/vite.config.js')
| -rw-r--r-- | client/simple/vite.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/simple/vite.config.js b/client/simple/vite.config.js index edf3b1f80..f8d3e6757 100644 --- a/client/simple/vite.config.js +++ b/client/simple/vite.config.js @@ -137,6 +137,17 @@ export default defineConfig({ ] }), + // -- svg images + + plg_svg2svg( + [ + { src: PATH.src + "/svg/empty_favicon.svg", dest: PATH.dist + "/img/empty_favicon.svg" }, + { src: PATH.src + "/svg/select-dark.svg", dest: PATH.dist + "/img/select-dark.svg" }, + { src: PATH.src + "/svg/select-light.svg", dest: PATH.dist + "/img/select-light.svg" }, + ], + svg2svg_opts, + ), + // SearXNG brand (static) plg_svg2png( |