chss/vite.config.ts
2022-07-07 10:14:45 +01:00

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'),
},
},
});