6.1.0 • Published 1 year ago
@cshbicos/tctm-capacitor-https v6.1.0
tctm-https
Removes common CORS and SSL issues encountered when deploying TCTM Apps with HTTPS
Install
npm install @cshbicos/tctm-capacitor-https
npx cap syncConfiguration
In capacitor.config.json, set the following
{
    ....
	"server": {
		"hostname": "yourserver.yourcompany.com",
		"androidScheme": "https"
	},
	"plugins": {
        ...
		"TCTMHttps": {
			"ignoreSSLErrors": false,
			"backendPaths": [
				"/api",
				"/api2"
			]
		}
	}
}