 944b73511a
			
		
	
	
		944b73511a
		
	
	
	
	
		
			
			Add link::
    <link rel="icon" href="favicon.png" sizes="any">
    <link rel="icon" href="favicon.svg" type="image/svg+xml">
Modern browsers should request::
    INFO  werkzeug   : 127.0.0.1 - - [28/Nov/2021 17:03:07] "GET /static/themes/simple/img/favicon.svg HTTP/1.1" 200 -
[1] https://github.com/audreyfeldroy/favicon-cheat-sheet#svg-file
[2] https://dev.to/masakudamatsu/favicon-nightmare-how-to-maintain-sanity-3al7
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
	
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			238 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			238 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * SPDX-License-Identifier: AGPL-3.0-or-later
 | |
|  *
 | |
|  * svgo config: Optimize SVG for WEB usage
 | |
|  */
 | |
| 
 | |
| module.exports = {
 | |
|   plugins: [
 | |
|     {
 | |
|       name: 'preset-default',
 | |
|     },
 | |
|     // make diff friendly
 | |
|     'sortAttrs',
 | |
|  ],
 | |
| };
 |