2024-03-17 17:28:45 +01:00
|
|
|
import { TanStackRouterVite } from "@tanstack/router-vite-plugin"
|
|
|
|
import react from "@vitejs/plugin-react-swc"
|
|
|
|
import { defineConfig } from "vite"
|
2023-11-30 16:16:32 -05:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-03-07 19:16:23 +01:00
|
|
|
plugins: [react(), TanStackRouterVite()],
|
2023-11-30 16:16:32 -05:00
|
|
|
})
|