File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11/// <reference types="vite/client" />
22declare module '*.vue' {
3- import type { DefineComponent } from 'vue' ;
3+ import type { DefineComponent } from 'vue' ;
44const component : DefineComponent < object , object , unknown > ;
55export default component ;
6- }
6+ }
Original file line number Diff line number Diff line change 11<script lang="ts" setup>
2- import { RouterView } from " vue-router " ;
2+ import { ArrowTopRightOnSquareIcon } from " @heroicons/ vue/24/outline " ;
33import { NavigationContainer } from " @shared/ui" ;
44import { useI18n } from " vue-i18n" ;
5- import { ArrowTopRightOnSquareIcon } from " @heroicons/ vue/24/outline " ;
5+ import { RouterView } from " vue-router " ;
66
77const { t } = useI18n ();
88const chatURL = import .meta .env .VITE_CHAT_URL ;
Original file line number Diff line number Diff line change 11import { i18n } from '@i18n/admin' ;
2+ import '@shared/style' ;
23import { createPinia } from 'pinia' ;
34import { createApp } from 'vue' ;
45import { createRouter , createWebHistory } from 'vue-router' ;
56import App from './App.vue' ;
67import { routes } from './routes' ;
7- import '@shared/style' ;
88
99export async function setupApp ( ) {
1010 const router = createRouter ( {
Original file line number Diff line number Diff line change 11import { i18n } from '@i18n/chat' ;
2+ import '@shared/style' ;
23import '@shared/ui' ;
34import { initializeMarkdown } from "@shared/utils" ;
45import { createPinia } from 'pinia' ;
56import { createApp } from 'vue' ;
67import { createRouter , createWebHistory } from 'vue-router' ;
78import App from './App.vue' ;
89import { routes } from './routes' ;
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