File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 11/// <reference types="vite/client" />
2- /* eslint-disable */
32declare module '*.vue' {
43import 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 > ;
75export default component ;
86}
Original file line number Diff line number Diff line change 11<script lang="ts" setup>
22import { RouterView } from " vue-router" ;
3- import { LogoContainer , NavigationContainer } from " @shared/ui" ;
3+ import { NavigationContainer } from " @shared/ui" ;
44import { useI18n } from " vue-i18n" ;
55import { ArrowTopRightOnSquareIcon } from " @heroicons/vue/24/outline" ;
66
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { createApp } from 'vue';
44import { createRouter , createWebHistory } from 'vue-router' ;
55import App from './App.vue' ;
66import { routes } from './routes' ;
7- import '../../../libs/ui-styles/src/tailwind.css ' ;
7+ import '@shared/style ' ;
88
99export async function setupApp ( ) {
1010 const router = createRouter ( {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { createApp } from 'vue';
66import { createRouter , createWebHistory } from 'vue-router' ;
77import App from './App.vue' ;
88import { routes } from './routes' ;
9- import '../../../libs/ui-styles/src/tailwind.css ' ;
9+ import '@shared/style ' ;
1010
1111export async function setupApp ( ) {
1212 const router = createRouter ( {
You can’t perform that action at this time.
0 commit comments