From 3a4f21bad885adb7f66a481561fdc7cd0c439735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20F=C3=B6rtsch?= Date: Wed, 11 Mar 2026 10:38:20 +0100 Subject: [PATCH] fix deprecated TanStackRouterVite, use tanstackRouter default export Co-Authored-By: Claude Opus 4.6 --- vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 752e5bf..561a066 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,7 @@ -import { TanStackRouterVite } from "@tanstack/router-plugin/vite" +import tanstackRouter from "@tanstack/router-plugin/vite" import react from "@vitejs/plugin-react" import { defineConfig } from "vite" export default defineConfig({ - plugins: [TanStackRouterVite(), react()], + plugins: [tanstackRouter(), react()], })