Skip to content

Commit

Permalink
add option for BI host env
Browse files Browse the repository at this point in the history
  • Loading branch information
qu-y authored Oct 17, 2023
1 parent ac786b0 commit d02c61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ module.exports = {
},
configureWebpack: config => {
let bioindex_dev = process.env.BIOINDEX_DEV;
let bioindex_host = "https://bioindex.hugeamp.org"; // production by default
let bioindex_host = process.env.BIOINDEX_HOST || "https://bioindex.hugeamp.org"; // production by default
//set private bioindex host if variable is defined, otherwise use default
let bioindex_host_private =
process.env.BIOINDEX_HOST_PRIVATE || "https://bioindex.hugeamp.org";
Expand Down

0 comments on commit d02c61a

Please sign in to comment.