add ios and web

This commit is contained in:
ANLGBOY
2025-11-23 15:54:59 +09:00
parent 5d2e263401
commit 375fad69c2
17 changed files with 1986 additions and 0 deletions

14
web/vite.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
port: 3000,
open: true
},
build: {
target: 'esnext'
},
optimizeDeps: {
exclude: ['onnxruntime-web']
}
});