create-bhvr
Version:
Create a new bhvr project
15 lines (13 loc) • 370 B
text/typescript
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { tanstackRouter } from "@tanstack/router-plugin/vite";
export default defineConfig({
plugins: [
// Please make sure that '@tanstack/router-plugin' is passed before '@vitejs/plugin-react'
tanstackRouter({
target: "react",
autoCodeSplitting: true,
}),
react(),
],
});