diff --git a/package-lock.json b/package-lock.json index f3a865ce..41630ba3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "@inertiajs/vue3": "^2.0.0-beta.3", + "@inertiajs/vue3": "^2.0.0", "@tailwindcss/vite": "^4.1.1", "@vitejs/plugin-vue": "^5.2.1", "@vueuse/core": "^12.8.2", @@ -13,7 +13,6 @@ "clsx": "^2.1.1", "concurrently": "^9.0.1", "laravel-vite-plugin": "^1.0", - "lucide": "^0.468.0", "lucide-vue-next": "^0.468.0", "reka-ui": "^2.2.0", "tailwind-merge": "^3.2.0", @@ -3485,12 +3484,6 @@ "dev": true, "license": "MIT" }, - "node_modules/lucide": { - "version": "0.468.0", - "resolved": "https://registry.npmjs.org/lucide/-/lucide-0.468.0.tgz", - "integrity": "sha512-UFbgwji/ZnAV7iTTE4jujyTV7J95AILKyATDUrqOJrMcUGfXvGjw3c1mcuHZUX2oJfkrAGU9KoxkrLQk2jjtiA==", - "license": "ISC" - }, "node_modules/lucide-vue-next": { "version": "0.468.0", "resolved": "https://registry.npmjs.org/lucide-vue-next/-/lucide-vue-next-0.468.0.tgz", diff --git a/resources/js/app.ts b/resources/js/app.ts index 5670d9e8..939aca3d 100644 --- a/resources/js/app.ts +++ b/resources/js/app.ts @@ -7,19 +7,6 @@ import { createApp, h } from 'vue'; import { ZiggyVue } from 'ziggy-js'; import { initializeTheme } from './composables/useAppearance'; -// Extend ImportMeta interface for Vite... -declare module 'vite/client' { - interface ImportMetaEnv { - readonly VITE_APP_NAME: string; - [key: string]: string | boolean | undefined; - } - - interface ImportMeta { - readonly env: ImportMetaEnv; - readonly glob: (pattern: string) => Record Promise>; - } -} - const appName = import.meta.env.VITE_APP_NAME || 'Laravel'; createInertiaApp({ diff --git a/resources/js/components/AppShell.vue b/resources/js/components/AppShell.vue index 2022061d..95281014 100644 --- a/resources/js/components/AppShell.vue +++ b/resources/js/components/AppShell.vue @@ -1,15 +1,13 @@