mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
13 lines
358 B
TypeScript
13 lines
358 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 precede react() — Start transforms server functions
|
|
// and generates the route tree first.
|
|
tanstackStart(),
|
|
react(),
|
|
],
|
|
});
|