wangtao 2 years ago
parent
commit
2c6d778261
4 changed files with 8 additions and 6 deletions
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 2 0
      .gitignore
  4. 4 4
      vue.config.js

+ 1 - 1
.env.development

@@ -2,7 +2,7 @@ ENV = 'development'
 
 # 接口地址
 # VUE_APP_BASE_API  = 'http://47.99.156.213:1537'
-VUE_APP_BASE_API  = 'http://172.16.120.49:8087/'
+VUE_APP_BASE_API  = 'http://172.16.120.49/zhcyapi/'
 #VUE_APP_WS_API = 'ws://47.99.156.213:1537'
 VUE_APP_WS_API = 'ws://localhost:1537'
 

+ 1 - 1
.env.production

@@ -4,7 +4,7 @@ ENV = 'production'
 # 接口地址,注意协议,如果你没有配置 ssl,需要将 https 改为 http
 # VUE_APP_BASE_API  = 'http://47.99.156.213:1537'
 #VUE_APP_BASE_API  = 'http://114.55.24.6:8081'
-VUE_APP_BASE_API  = 'http://172.16.120.49:8087/'
+VUE_APP_BASE_API  = 'http://172.16.120.49/zhcyapi/'
 # 如果接口是 http 形式, wss 需要改为 ws
 #VUE_APP_WS_API = 'ws://47.99.156.213:1537'
 #VUE_APP_WS_API = 'ws://114.55.24.6:8081'

+ 2 - 0
.gitignore

@@ -1,6 +1,8 @@
 .DS_Store
 /dist
 node_modules/
+.history/
+dist/
 npm-debug.log*
 yarn-debug.log*
 yarn-error.log*

+ 4 - 4
vue.config.js

@@ -13,9 +13,9 @@ const port = 6112 // 端口配置
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {
     // hash 模式下可使用
-    publicPath: process.env.NODE_ENV === "production" ? "/vzhcy/" : "/vzhcy/",
-    //publicPath: '/',
-    outputDir: 'vzhcy',
+    //publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
+    publicPath: './',
+    outputDir: 'dist',
     assetsDir: 'static',
     lintOnSave: process.env.NODE_ENV === 'development',
     productionSourceMap: false,
@@ -150,4 +150,4 @@ module.exports = {
         'vue-echarts',
         'resize-detector'
     ]
-}
+}