24 lines
439 B
TypeScript
24 lines
439 B
TypeScript
import { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "com.cunkebao.app",
|
|
appName: "Cunkebao",
|
|
webDir: "dist",
|
|
server: {
|
|
androidScheme: "https",
|
|
},
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchShowDuration: 2000,
|
|
backgroundColor: "#ffffff",
|
|
showSpinner: true,
|
|
spinnerColor: "#999999",
|
|
},
|
|
StatusBar: {
|
|
style: "dark",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|