mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
14 lines
418 B
TypeScript
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(),
|
|
],
|
|
});
|