Created environment files for cross platform applications

This commit is contained in:
Joel Collins 2019-04-25 14:35:04 +01:00
parent df4d99d408
commit 1ffadb042f
6 changed files with 18 additions and 0 deletions

3
.env.development.android Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=development
VUE_APP_PLATFORM=android
VUE_APP_MODE=native

3
.env.development.ios Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=development
VUE_APP_PLATFORM=ios
VUE_APP_MODE=native

3
.env.development.web Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=development
VUE_APP_PLATFORM=web
VUE_APP_MODE=web

3
.env.production.android Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=production
VUE_APP_PLATFORM=android
VUE_APP_MODE=native

3
.env.production.ios Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=production
VUE_APP_PLATFORM=ios
VUE_APP_MODE=native

3
.env.production.web Normal file
View file

@ -0,0 +1,3 @@
NODE_ENV=production
VUE_APP_PLATFORM=web
VUE_APP_MODE=web