summaryrefslogtreecommitdiff
path: root/vite.config.ts
blob: 7a686e11b4efa1de307bfefb40677b624ed0c06f (plain)
1
2
3
4
5
6
7
8
9
10
import { reactRouter } from "@react-router/dev/vite";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";

export default defineConfig({
  plugins: [tailwindcss(), reactRouter()],
  resolve: {
    tsconfigPaths: true,
  },
});