2024-03-13 16:11:28 +08:00
|
|
|
import {defineConfig} from 'vite'
|
2024-03-11 19:13:42 +08:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-03-13 16:11:28 +08:00
|
|
|
plugins: [react()],
|
|
|
|
server: {
|
|
|
|
host: '0.0.0.0'
|
2024-04-01 20:39:22 +08:00
|
|
|
},
|
|
|
|
base: './'
|
2024-03-11 19:13:42 +08:00
|
|
|
})
|