diff options
author | mrpaulblack <paul@paulgo.io> | 2021-12-18 21:24:59 +0100 |
---|---|---|
committer | mrpaulblack <paul@paulgo.io> | 2021-12-18 21:24:59 +0100 |
commit | 414f1039d2269ec13e3a6fbf8810ce65900cbbb9 (patch) | |
tree | c73fb6b1a94c8283847cf13c3ea3fc9e880d1c65 /searx/static/themes/simple/gruntfile.js | |
parent | 2713ac6c0b5aeca29ca1ade6df1b962e9396fdd0 (diff) | |
download | searxng-414f1039d2269ec13e3a6fbf8810ce65900cbbb9.tar.gz searxng-414f1039d2269ec13e3a6fbf8810ce65900cbbb9.zip |
[fix] theme: build `img_load_error.svg` as svg
Diffstat (limited to 'searx/static/themes/simple/gruntfile.js')
-rw-r--r-- | searx/static/themes/simple/gruntfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/simple/gruntfile.js b/searx/static/themes/simple/gruntfile.js index 46ab657e0..446c52335 100644 --- a/searx/static/themes/simple/gruntfile.js +++ b/searx/static/themes/simple/gruntfile.js @@ -129,7 +129,8 @@ module.exports = function (grunt) { }, files: { '<%= _templates %>/__common__/searxng-wordmark.min.svg': '<%= _brand %>/searxng-wordmark.svg', - 'img/searxng.svg': '<%= _brand %>/searxng.svg' + 'img/searxng.svg': '<%= _brand %>/searxng.svg', + 'img/img_load_error.svg': '<%= _brand %>/img_load_error.svg' } }, favicon: { @@ -146,7 +147,6 @@ module.exports = function (grunt) { files: { 'img/favicon.png': '<%= _brand %>/searxng-wordmark.svg', 'img/searxng.png': '<%= _brand %>/searxng.svg', - 'img/img_load_error.svg': '<%= _brand %>/img_load_error.svg' } } }, |