@regulaforensics/idv
Version:
This is an npm module for Regula IDV, which unifies access to all Regula products. This plugin makes possible to use it with react-native, cordova and capacitor applications. Supports Android and iOS.
18 lines (16 loc) • 349 B
text/typescript
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import { viteStaticCopy } from 'vite-plugin-static-copy';
export default defineConfig({
plugins: [
react(),
viteStaticCopy({
targets: [
{
src: 'src/main.html',
dest: '.'
}
]
})],
build: { outDir: 'www' }
})