From a6eaff8a5e105fcd58c6892d2ec4ab9995396785 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= <ciaranainsworth@proton.me>
Date: Mon, 13 Nov 2023 11:44:43 +0100
Subject: [PATCH] fix(lib): update import paths to fix intellisense

---
 src/main.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index 6b35484..e3ff64c 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,9 +1,9 @@
 import type { App } from 'vue'
 
-import '~/styles/funkwhale.scss'
+import './styles/funkwhale.scss'
 
-import * as components from '~/components'
-export * from '~/components'
+import * as components from './components'
+export * from './components'
 
 export default {
   install (app: App) {
-- 
GitLab