Files
stanza/apps/web/vite.config.ts
T
2026-05-20 11:52:53 -04:00

14 lines
418 B
TypeScript

import { defineConfig } from "vite";
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [
// tanstackStart() MUST come before react() — the Start plugin generates
// route trees and transforms server functions; the React plugin reads
// the transformed output.
tanstackStart(),
react(),
],
});