15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
|
import { CapacitorConfig } from "@capacitor/cli"
|
||
|
|
||
|
const config: CapacitorConfig = {
|
||
|
appId: "dev.solsynth.solaragent",
|
||
|
appName: "Solian",
|
||
|
webDir: "dist",
|
||
|
server: {
|
||
|
androidScheme: "https",
|
||
|
url: "http://localhost:5173",
|
||
|
cleartext: true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default config
|