mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
15 lines
406 B
Handlebars
15 lines
406 B
Handlebars
import { defineConfig } from "vite";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import viteReact from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
tsconfigPaths(),
|
|
tailwindcss(),
|
|
tanstackStart({ customViteReactPlugin: true }),
|
|
viteReact(),
|
|
],
|
|
});
|