feat: add capacitor.js

This commit is contained in:
Jan
2022-06-22 21:36:30 +02:00
parent 95ebd935ed
commit 7611099d6d
3 changed files with 437 additions and 8 deletions

13
capacitor.config.ts Normal file
View File

@@ -0,0 +1,13 @@
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;