From 68345aea7eb088806bd10552bc621cc114d55b79 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com>
Date: Wed, 27 Nov 2024 19:35:55 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8F=8B=E6=83=85=E9=93=BE?=
=?UTF-8?q?=E6=8E=A5=E7=9A=84bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitignore | 2 ++
.nuxt/manifest/latest.json | 2 +-
.nuxt/nuxt.d.ts | 6 +++---
.nuxt/tsconfig.json | 2 +-
.nuxt/types/plugins.d.ts | 6 ++++--
5 files changed, 11 insertions(+), 7 deletions(-)
create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ca246fd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/.output/
+/.nuxt/
diff --git a/.nuxt/manifest/latest.json b/.nuxt/manifest/latest.json
index 1e9c1f9..f7d5fe4 100644
--- a/.nuxt/manifest/latest.json
+++ b/.nuxt/manifest/latest.json
@@ -1 +1 @@
-{"id":"f1ea6bcb-9ddb-4d51-bf67-e0c6ad6735fd","timestamp":1732600398785}
\ No newline at end of file
+{"id":"dev","timestamp":1732706138674}
\ No newline at end of file
diff --git a/.nuxt/nuxt.d.ts b/.nuxt/nuxt.d.ts
index 58e4589..d0b782e 100644
--- a/.nuxt/nuxt.d.ts
+++ b/.nuxt/nuxt.d.ts
@@ -1,8 +1,8 @@
// Generated by nuxi
-///
-///
-///
///
+///
+///
+///
///
///
///
diff --git a/.nuxt/tsconfig.json b/.nuxt/tsconfig.json
index de661c5..2d3b75f 100644
--- a/.nuxt/tsconfig.json
+++ b/.nuxt/tsconfig.json
@@ -96,7 +96,7 @@
"./imports"
],
"#app-manifest": [
- "./manifest/meta/f1ea6bcb-9ddb-4d51-bf67-e0c6ad6735fd.json"
+ "./manifest/meta/dev.json"
],
"#build": [
"."
diff --git a/.nuxt/types/plugins.d.ts b/.nuxt/types/plugins.d.ts
index 4836be2..602559b 100644
--- a/.nuxt/types/plugins.d.ts
+++ b/.nuxt/types/plugins.d.ts
@@ -7,7 +7,6 @@ type IsAny = 0 extends 1 & T ? true : false
type InjectionType = IsAny extends true ? unknown : A extends Plugin ? Decorate : unknown
type NuxtAppInjections =
- InjectionType &
InjectionType &
InjectionType &
InjectionType &
@@ -16,13 +15,16 @@ type NuxtAppInjections =
InjectionType &
InjectionType &
InjectionType &
+ InjectionType &
+ InjectionType &
+ InjectionType &
InjectionType
declare module '#app' {
interface NuxtApp extends NuxtAppInjections { }
interface NuxtAppLiterals {
- pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:payload' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch'
+ pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt:checkIfLayoutUsed'
}
}