mirror of
https://github.com/different-ai/openwork
synced 2026-05-10 17:22:05 +02:00
* chore: migrate tailwind v4 and add theme scaffolding * feat: integrate radix colors and theme switching * pnpm version
15 lines
286 B
TypeScript
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",
|
|
},
|
|
});
|