dc-copy/vite.config.ts

11 lines
221 B
TypeScript
Raw Normal View History

2025-01-21 01:36:21 +09:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
2025-02-05 00:03:38 +09:00
// import tailwindcss from '@tailwindcss/vite'
2025-01-21 01:36:21 +09:00
// https://vite.dev/config/
export default defineConfig({
2025-02-05 00:03:38 +09:00
plugins: [
react(),
],
2025-01-21 01:36:21 +09:00
})