mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 01:15:28 +00:00
14 lines
276 B
TypeScript
14 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;
|