Add AI face capability demos

This commit is contained in:
yankun
2026-07-26 20:58:27 +08:00
parent 7cc505a5e2
commit d6a69cf906
32 changed files with 1266 additions and 0 deletions
@@ -0,0 +1,18 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
base: './',
publicDir: 'public',
build: { target: ['chrome74'] },
resolve: { alias: { '@': '/src' } },
plugins: [vue()],
optimizeDeps: {
esbuildOptions: {
define: { global: 'globalThis' },
target: 'es2015',
supported: { bigint: true }
}
}
})