vite.config.ts 223 B

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