Skip to content

Commit 585abc4

Browse files
committed
refactor: update Vue component type definitions and streamline style imports
1 parent 42255e7 commit 585abc4

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/// <reference types="vite/client" />
2-
/* eslint-disable */
32
declare module '*.vue' {
43
import type { DefineComponent } from 'vue';
5-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
6-
const component: DefineComponent<object, object, any>;
4+
const component: DefineComponent<object, object, unknown>;
75
export default component;
86
}

services/frontend/apps/admin-app/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { RouterView } from "vue-router";
3-
import { LogoContainer, NavigationContainer } from "@shared/ui";
3+
import { NavigationContainer } from "@shared/ui";
44
import { useI18n } from "vue-i18n";
55
import { ArrowTopRightOnSquareIcon } from "@heroicons/vue/24/outline";
66

services/frontend/apps/admin-app/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { createApp } from 'vue';
44
import { createRouter, createWebHistory } from 'vue-router';
55
import App from './App.vue';
66
import { routes } from './routes';
7-
import '../../../libs/ui-styles/src/tailwind.css';
7+
import '@shared/style';
88

99
export async function setupApp() {
1010
const router = createRouter({

services/frontend/apps/chat-app/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { createApp } from 'vue';
66
import { createRouter, createWebHistory } from 'vue-router';
77
import App from './App.vue';
88
import { routes } from './routes';
9-
import '../../../libs/ui-styles/src/tailwind.css';
9+
import '@shared/style';
1010

1111
export async function setupApp() {
1212
const router = createRouter({

0 commit comments

Comments
 (0)