vite.config.ts 184 B

12345678910
  1. import { defineConfig } from 'vite';
  2. import vue from '@vitejs/plugin-vue';
  3. export default defineConfig({
  4. plugins: [vue()],
  5. server: {
  6. host: '127.0.0.1',
  7. port: 5173
  8. }
  9. });