From 11349561d697b11df7bcaa3d57ed3498eb4dd3c5 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 20 Apr 2021 23:22:59 +0900 Subject: Use FontAwesome as web font instead of vue component (#7469) * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip --- src/client/init.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/client/init.ts') diff --git a/src/client/init.ts b/src/client/init.ts index daedce4aee..8926b35539 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -7,7 +7,6 @@ import '@client/style.scss'; import * as Sentry from '@sentry/browser'; import { Integrations } from '@sentry/tracing'; import { computed, createApp, watch } from 'vue'; -import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'; import widgets from '@client/widgets'; import directives from '@client/directives'; @@ -184,8 +183,6 @@ app.config.globalProperties = { }; app.use(router); -// eslint-disable-next-line vue/component-definition-name-casing -app.component('Fa', FontAwesomeIcon); widgets(app); directives(app); -- cgit v1.2.3-freya