Skip to content

Commit 9dbd4e3

Browse files
committed
chore(frontend): replace deprecated vite plugin import
1 parent 7bd524d commit 9dbd4e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/frontend/vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "vite";
22
import react from "@vitejs/plugin-react";
3-
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
3+
import tanstackRouter from "@tanstack/router-plugin/vite";
44
import unpluginFavicons from "@anolilab/unplugin-favicons/vite";
55

66
// https://vitejs.dev/config/
@@ -14,7 +14,7 @@ export default defineConfig({
1414
clearScreen: false,
1515
plugins: [
1616
react(),
17-
TanStackRouterVite({ quoteStyle: "double", semicolons: true }),
17+
tanstackRouter({ quoteStyle: "double", semicolons: true }),
1818
unpluginFavicons({
1919
logo: "./public/logo.svg",
2020
inject: true,

0 commit comments

Comments
 (0)