2025-02-19 12:33:38 -07:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
2025-03-05 22:30:52 -07:00
|
|
|
import tailwindcss from '@tailwindcss/vite'
|
2025-02-19 12:33:38 -07:00
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
2025-03-05 22:30:52 -07:00
|
|
|
plugins: [
|
|
|
|
|
react(),
|
|
|
|
|
tailwindcss(),
|
|
|
|
|
],
|
2025-02-19 12:33:38 -07:00
|
|
|
})
|