mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-27 21:37:51 +00:00
16 lines
298 B
TypeScript
16 lines
298 B
TypeScript
import type { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "org.Qortal.Qortal-Hub",
|
|
appName: "Qortal-Hub",
|
|
webDir: "dist",
|
|
plugins: {
|
|
LocalNotifications: {
|
|
smallIcon: "qort",
|
|
iconColor: "#09b6e8",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|