Files
go_nuxt_admin/app/plugins/fontawesome.client.ts
Beyhan Oğur 5285a0dd86 first commit
2026-04-26 22:07:47 +03:00

8 lines
401 B
TypeScript

// Converted to a no-op: we register Font Awesome using an SSR-aware plugin `app/plugins/fontawesome.ts`.
// Keep this client-only file present (if you relied on it elsewhere) but do not inject the runtime script
// to avoid hydration mismatches.
export default defineNuxtPlugin(() => {
if (process.server) return
// No-op on client — FontAwesome is registered via app/plugins/fontawesome.ts
})