We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c4e23 commit 3420cd2Copy full SHA for 3420cd2
redirect.ejs
@@ -19,7 +19,9 @@
19
var protocol = '<%- https ? "https" : "http" %>'
20
var port = '<%- port %>'
21
var platform = device.platform.toLowerCase()
22
- if(platform === 'amazon-fireos') {
+ if (platform === 'amazon-fireos') { // see https://github.com/dekimasoon/vue-cli-plugin-cordova/issues/29
23
+ // platform "amazon-fireos" seems to have disapear from Cordova docs, and can't be downloaded anymore.
24
+ // In order to avoid asking server for something that doesn't exist, "alias" "amazon-fireos" to simply "android"
25
platform = 'android'
26
}
27
var redirectTo = protocol + '://' + getRedirectIp(lanIp) + ':' + port + '/?_cp=' + platform
0 commit comments