m0dch3n
m0dch3n
ok, no problem, I'll keep this issue open for 3 weeks, if nothing happens.
@cairinmichie do you have any progress?
@cairinmichie did you made any progress or should I close the ticket ?
@jacobg you came to the same problem then here I think: https://github.com/m0dch3n/vue-cli-plugin-cordova/issues/20 My question there was, how would you distinct between cordova and vue arguments ? If all the arguments...
never tried build.json, so in fact, you can define all the arguments you need, for every cordova command and keep then command arguments away ? If so, this would help...
ok, I'll give build.json a try, and we can mention and explain this in the README for the "advanced" users
@jacobg modes are already working, if you do ` "cordova-serve-android": "vue-cli-service cordova-serve-android --mode staging"` the app takes the vars from .env.staging...
so i.e. you could this ` "cordova-staging-android": "vue-cli-service cordova-build-android --mode staging",` this would end up in : ``` vue-cli-service build --mode staging --dest src-cordova/www cordova build android --release ```
BTW, if we go with only one command for the plugin flexibility, we cannot solve this issue in the same time, because during the plugin runtime, it's already to late...
I needed in my ``: ```html ``` Since I have a very big DOM, teleporting directly to `body` causes a complete `recalculate style` of the node. So adding a modal...