Router setup

This commit is contained in:
Julien Valverdé
2024-07-12 02:33:49 +02:00
parent 3e9ca7de23
commit 3aec417f6d
9 changed files with 116 additions and 69 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { TanStackRouterVite } from "@tanstack/router-plugin/vite"
import { default as react, default as viteReact } from "@vitejs/plugin-react"
import { defineConfig } from "vite"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [
TanStackRouterVite(),
viteReact(),
react(),
]
})