Files
nanobot-frontend/vite.config.js

11 lines
176 B
JavaScript
Raw Permalink Normal View History

2026-03-23 14:32:49 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
host: true,
},
})