mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
server: {
|
|
port: 5173,
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['@vjs/react'],
|
|
},
|
|
});
|