Files
peakskills/lib/fontawesome.ts
Julien Froidefond f74d4d3e87 Add Font Awesome icons and refactor tech icon handling
- Added Font Awesome dependencies for enhanced icon support.
- Refactored tech icon components to utilize Font Awesome icons instead of custom SVGs.
- Updated skill data files to include icon properties for various technologies.
- Removed obsolete tech icon files to streamline the codebase.
2025-08-20 16:24:07 +02:00

7 lines
250 B
TypeScript

// Configuration Font Awesome
import { config } from '@fortawesome/fontawesome-svg-core';
import '@fortawesome/fontawesome-svg-core/styles.css';
// Empêche Font Awesome d'ajouter automatiquement du CSS (Next.js le gère)
config.autoAddCss = false;