mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-10-08 18:02:39 +00:00
docs
electron
public
src
.eslintrc.cjs
.gitignore
.prettierignore
.prettierrc
README.md
capacitor.config.ts
i18n.js
index.html
package-lock.json
package.json
tsconfig.json
tsconfig.node.json
vite.config.ts
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;
|