From 2bd479ff866971953cb19b68ddd59a704bdad95e Mon Sep 17 00:00:00 2001 From: Rijk van Zanten Date: Thu, 21 Aug 2025 17:56:13 -0400 Subject: [PATCH 1/2] Add nuxt tsconfig --- docs/tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/tsconfig.json diff --git a/docs/tsconfig.json b/docs/tsconfig.json new file mode 100644 index 0000000..6ae5970 --- /dev/null +++ b/docs/tsconfig.json @@ -0,0 +1,17 @@ +{ + "files": [], + "references": [ + { + "path": "./.nuxt/tsconfig.app.json" + }, + { + "path": "./.nuxt/tsconfig.server.json" + }, + { + "path": "./.nuxt/tsconfig.shared.json" + }, + { + "path": "./.nuxt/tsconfig.node.json" + } + ] +} From 3a16a294f9d49c228b70f7f51b18640eb2825e1e Mon Sep 17 00:00:00 2001 From: Rijk van Zanten Date: Thu, 21 Aug 2025 17:57:26 -0400 Subject: [PATCH 2/2] Set headerbar title --- docs/app.config.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/app.config.ts diff --git a/docs/app.config.ts b/docs/app.config.ts new file mode 100644 index 0000000..471a3c2 --- /dev/null +++ b/docs/app.config.ts @@ -0,0 +1,5 @@ +export default defineAppConfig({ + header: { + title: 'Vue Split Panel', + }, +});