mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-03-17 13:21:44 +01:00
22 lines
368 B
TypeScript
22 lines
368 B
TypeScript
|
import type { CapacitorConfig } from "@capacitor/cli";
|
||
|
|
||
|
const config: CapacitorConfig = {
|
||
|
appId: "ninja.nostrudel",
|
||
|
appName: "noStrudel",
|
||
|
webDir: "dist",
|
||
|
backgroundColor: "171819",
|
||
|
android: {
|
||
|
allowMixedContent: true,
|
||
|
},
|
||
|
server: {
|
||
|
cleartext: true,
|
||
|
},
|
||
|
plugins: {
|
||
|
CapacitorHttp: {
|
||
|
enabled: true,
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|