From b1086828c74c30aa118a0e87edac59e6615ec801 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:42:55 +0100 Subject: [PATCH] chore(setup): use new inertia vite plugin --- vite.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vite.config.ts b/vite.config.ts index 7ab2cb41bb..83319de1ec 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,3 +1,4 @@ +import inertia from "@inertiajs/vite"; import { svelte } from "@sveltejs/vite-plugin-svelte"; import tailwindcss from "@tailwindcss/vite"; import laravel from "laravel-vite-plugin"; @@ -9,6 +10,7 @@ export default defineConfig({ input: ["resources/js/app.ts"], refresh: true, }), + inertia(), svelte({ configFile: "svelte.config.ts", // TODO: Remove once Inertia v3 https://github.com/inertiajs/inertia/tree/3.x is released and runes=true is set in svelte.config.ts