13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '',
|
|
server: {
|
|
hmr: {
|
|
clientPort: parseInt(process.env.CLIENT_PORT || '3000'),
|
|
},
|
|
},
|
|
});
|