This commit is contained in:
xiaoma
2026-02-10 21:40:05 +08:00
parent 5948e2998d
commit ee88c5b3e1
7 changed files with 28 additions and 9 deletions

View File

@@ -1,7 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
//123
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
},
preview: {
host: '0.0.0.0',
port: 15173,
}
})