Files
openwork/vite.config.ts
Omar McAdam 4689852686 feat: add radix color theming (#133)
* chore: migrate tailwind v4 and add theme scaffolding

* feat: integrate radix colors and theme switching

* pnpm version
2026-01-20 13:56:44 -08:00

15 lines
286 B
TypeScript

import { defineConfig } from "vite";
import tailwindcss from "@tailwindcss/vite";
import solid from "vite-plugin-solid";
export default defineConfig({
plugins: [tailwindcss(), solid()],
server: {
port: 5173,
strictPort: true,
},
build: {
target: "esnext",
},
});