mirror of
https://github.com/vee1e/gitivity.git
synced 2026-09-01 19:07:12 +00:00
20 lines
375 B
TypeScript
20 lines
375 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '127.0.0.1',
|
|
port: 5173,
|
|
strictPort: true,
|
|
cors: true,
|
|
hmr: {
|
|
host: 'localhost',
|
|
port: 5173,
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: ['lucide-react'],
|
|
},
|
|
});
|