2024-01-16 17:02:53 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [vue()],
|
2024-01-19 16:58:33 +08:00
|
|
|
server: {
|
|
|
|
host: '0.0.0.0',
|
|
|
|
port: '5173'
|
|
|
|
}
|
2024-01-16 17:02:53 +08:00
|
|
|
})
|