This commit is contained in:
xingyy 2025-03-11 11:54:51 +08:00
parent 51b3a212e8
commit c6a5897337
2 changed files with 9 additions and 1 deletions

View File

@ -248,6 +248,7 @@ export const liveStore = createGlobalState(() => {
} }
} }
return{ return{
decryptUtils,
fullLive, fullLive,
isMinWindow, isMinWindow,
lastSnapshot, lastSnapshot,

View File

@ -1,4 +1,11 @@
{ {
// https://nuxt.com/docs/guide/concepts/typescript // https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json" "extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["app/*"] //
}
},
"include": ["app/**/*"]
} }