Skip to content

Commit

Permalink
Use SERVER as env name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbestle committed Jun 28, 2024
1 parent cfea3b0 commit c1a1da3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panel/.env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VUE_APP_DEV_SERVER = "http://sandbox.test"
SERVER = "http://sandbox.test"
2 changes: 1 addition & 1 deletion panel/vite.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function createAliases() {
*/
function createServer() {
const proxy = {
target: process.env.VUE_APP_DEV_SERVER ?? "http://sandbox.test",
target: process.env.SERVER ?? "http://sandbox.test",
changeOrigin: true,
secure: false
};
Expand Down

0 comments on commit c1a1da3

Please sign in to comment.