diff --git a/README.md b/README.md index 962b7bc..167b775 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ npm run lint ``` # (See .env.development for more details.) # The test BVC_MEETUPS_PROJECT_CLAIM_ID does not resolve as a URL because it's only in the test DB and the prod redirect won't redirect there. -TIME_SAFARI_APP_TITLE="TimeSafari_Test" VITE_BVC_MEETUPS_PROJECT_CLAIM_ID=https://endorser.ch/entity/01HNTZYJJXTGT0EZS3VEJGX7AK VITE_DEFAULT_ENDORSER_API_SERVER=https://test-api.endorser.ch VITE_DEFAULT_IMAGE_API_SERVER=https://test-image-api.timesafari.app npm run build +VITE_TIME_SAFARI_APP_TITLE="TimeSafari_Test" VITE_BVC_MEETUPS_PROJECT_CLAIM_ID=https://endorser.ch/entity/01HNTZYJJXTGT0EZS3VEJGX7AK VITE_DEFAULT_ENDORSER_API_SERVER=https://test-api.endorser.ch VITE_DEFAULT_IMAGE_API_SERVER=https://test-image-api.timesafari.app npm run build ``` * Production diff --git a/vue.config.js b/vue.config.js index fe527a8..02fb8b3 100644 --- a/vue.config.js +++ b/vue.config.js @@ -4,7 +4,7 @@ const { exec } = require("child_process"); import.meta.env.VITE_GIT_HASH = gitDescribeSync().hash; const TIME_SAFARI_APP_TITLE = - import.meta.env.TIME_SAFARI_APP_TITLE || require("./package.json").name; + import.meta.env.VITE_TIME_SAFARI_APP_TITLE || require("./package.json").name; module.exports = defineConfig({ transpileDependencies: true,