mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
|
|
import { reactRouter } from "@react-router/dev/vite"
|
||
|
|
import tailwindcss from "@tailwindcss/vite"
|
||
|
|
import { defineConfig } from "vite"
|
||
|
|
import tsconfigPaths from "vite-tsconfig-paths"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [tailwindcss(), reactRouter(), tsconfigPaths()],
|
||
|
|
ssr: {
|
||
|
|
noExternal: ["lottie-react"],
|
||
|
|
},
|
||
|
|
})
|