Browse Source

:bug: fix config.js

zhanghe 6 years ago
parent
commit
f19207fe3a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/config.js

+ 1 - 1
src/utils/config.js

@@ -139,7 +139,7 @@ function apiFormatter() {
   let prefix = '';
   if (process.env.NODE_ENV === 'development') {
     prefix = Hotax.API_HOST_DEV;
-  } else if (process.env.API_ENV === 'production') {
+  } else if (process.env.NODE_ENV === 'production') {
     prefix = Hotax.API_HOST_PRO;
   } else {
     prefix = Hotax.API_HOST_DEV;