create-bhvr
Version:
Create a new bhvr project
14 lines (13 loc) • 417 B
JavaScript
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(),
],
});