mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 00:33:38 -05:00
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
import { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "chat.revolt.mobile",
|
|
appName: "Revolt",
|
|
webDir: "dist",
|
|
bundledWebRuntime: false,
|
|
server: {
|
|
hostname: "app.revolt.chat",
|
|
},
|
|
};
|
|
|
|
export default config;
|