This commit is contained in:
2026-08-07 11:35:11 +08:00
commit 750418e3b7
31 changed files with 4675 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// 移动端 Web App 配置
export default defineConfig({
plugins: [vue()],
base: './',
server: {
host: '0.0.0.0',
port: 5174,
},
});