File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import path from "path";
44
55// https://vitejs.dev/config/
66export default defineConfig ( ( { } ) => {
7- const deploymentId = process . env . LLAMA_DEPLOY_DEPLOYMENT_URL_ID ;
7+ const deploymentName = process . env . LLAMA_DEPLOY_DEPLOYMENT_NAME ;
88 const basePath = process . env . LLAMA_DEPLOY_DEPLOYMENT_BASE_PATH ;
99 const projectId = process . env . LLAMA_DEPLOY_PROJECT_ID ;
1010 const port = process . env . PORT ;
@@ -30,9 +30,9 @@ export default defineConfig(({}) => {
3030 define : {
3131 // Copy through some standard environment variables to make
3232 // integration with workflows api easier
33- ...( deploymentId && {
33+ ...( deploymentName && {
3434 "import.meta.env.VITE_LLAMA_DEPLOY_DEPLOYMENT_NAME" :
35- JSON . stringify ( deploymentId ) ,
35+ JSON . stringify ( deploymentName ) ,
3636 } ) ,
3737 ...( basePath && {
3838 "import.meta.env.VITE_LLAMA_DEPLOY_DEPLOYMENT_BASE_PATH" :
You can’t perform that action at this time.
0 commit comments