13 lines
387 B
TypeScript
13 lines
387 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
|
import viteReact from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
plugins: [tsconfigPaths(), tailwindcss(), tanstackStart(), viteReact()],
|
|
server: {
|
|
port: 3001,
|
|
},
|
|
});
|