d706d846d5
- Starting point of converting old site mand in HTML and PHP to React.js
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()]
|
|
})
|