| 123456789101112 | 
							- import { readFile, writeFile } from 'fs/promises';
 
- import themeSettings from '../src/settings/theme.json';
 
- async function updateFavicon(svgPath: string, color: string) {
 
-   const svgStr = await readFile(svgPath, 'utf-8');
 
-   const svgStrWithColor = svgStr.replace(/currentColor/g, color);
 
-   await writeFile('./public/favicon.svg', svgStrWithColor);
 
- }
 
- updateFavicon('./src/assets/svg-icon/logo.svg', themeSettings.themeColor);
 
 
  |