2
0

vite.config.ts 240 B

123456789101112
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react-swc'
  3. // https://vite.dev/config/
  4. export default defineConfig({
  5. plugins: [react()],
  6. server: {
  7. allowedHosts:true,
  8. host: '0.0.0.0',
  9. port: 8080
  10. }
  11. })