non-invasive-checkup/capacitor.config.ts
2026-04-22 22:13:53 +08:00

12 lines
327 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'io.ionic.starter',
appName: 'myApp',
webDir: 'dist',
// 与 video-recorder 插件配合WebView 透明以便原生相机预览层stackPosition: back可见
backgroundColor: '#00000000'
};
export default config;