2024-06-21 04:32:55 +00:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [vue()],
|
2024-10-10 01:46:14 +00:00
|
|
|
server:{
|
|
|
|
host:"0.0.0.0",
|
|
|
|
port:6769
|
|
|
|
}
|
2024-06-21 04:32:55 +00:00
|
|
|
})
|