mirror of
https://github.com/guezoloic/website.git
synced 2026-01-25 00:34:23 +00:00
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
tailwindcss(),
|
|
react()
|
|
],
|
|
})
|