operations: Add cache invalidation, DEV build config.

This commit is contained in:
2021-10-26 11:51:55 -05:00
parent 111dbdce52
commit 1d792f96bb
4 changed files with 33 additions and 2 deletions

2
web/.env.development Normal file
View File

@ -0,0 +1,2 @@
NODE_ENV=production
VUE_APP_API_BASE_URL=https://forms-api-dev.hopefamilyfellowship.com/v1/

View File

@ -5,7 +5,8 @@
"scripts": {
"serve": "npx servor dist",
"build": "vue-cli-service build",
"build-local": "vue-cli-service build --mode development",
"build-dev": "vue-cli-service build --mode development",
"build-prod": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"vue-serve": "vue-cli-service serve"
},