Publish Xiaomi subsite without APK artifact

This commit is contained in:
Xisheng-Zhao
2026-06-26 17:30:32 +08:00
parent 1e4a88677f
commit 5800000268
30 changed files with 2881 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig(() => ({
plugins: [react()],
base: process.env.VITE_BASE || '/',
build: {
outDir: 'dist',
},
server: {
host: '127.0.0.1',
},
}));