This commit is contained in:
2025-08-05 18:56:42 +02:00
parent fe02798326
commit 2a41db4dce
84 changed files with 263 additions and 187 deletions

View File

@@ -1,7 +1,7 @@
const fs = require('fs');
const path = require('path');
const iconsDir = path.join(__dirname, 'public', 'assets', 'icons');
const iconsDir = __dirname;
fs.readdirSync(iconsDir).forEach(file => {
if (file.endsWith('.svg')) {
const filePath = path.join(iconsDir, file);