16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
chunkSizeWarningLimit: 700,
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
},
|
|
preview: {
|
|
port: 4173,
|
|
},
|
|
});
|