mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
import { defineConfig } from "@tanstack/react-start/config";
|
|
import viteTsConfigPaths from "vite-tsconfig-paths";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
tsr: {
|
|
appDirectory: "src",
|
|
},
|
|
vite: {
|
|
plugins: [
|
|
viteTsConfigPaths({
|
|
projects: ["./tsconfig.json"],
|
|
}),
|
|
tailwindcss(),
|
|
],
|
|
},
|
|
});
|