Browse Source

配置修改

zhongxiaoyu 1 year ago
parent
commit
4d59c8a416
4 changed files with 14 additions and 4 deletions
  1. 1 0
      package.json
  2. 4 4
      public/staticConfig.js
  3. BIN
      static/img/pic_logo.png
  4. 9 0
      vue.config.js

+ 1 - 0
package.json

@@ -51,6 +51,7 @@
     "babel-plugin-dynamic-import-node": "2.3.3",
     "chalk": "2.4.2",
     "connect": "3.6.6",
+    "copy-webpack-plugin": "^6.3.2",
     "eslint": "6.7.2",
     "eslint-plugin-vue": "6.2.2",
     "html-webpack-plugin": "3.2.0",

+ 4 - 4
public/staticConfig.js

@@ -28,11 +28,11 @@ switch (baseNewUrl) {
   case '10.211.67.177':
     PLATFROM_CONFIG = {
       ...PLATFROM_CONFIG,
-      baseNewUrl: 'http://10.211.66.23:8082',
-      baseURLCA: 'http://10.211.66.23:8082',
-      fileUrl: 'http://10.211.66.23:8082',
+      baseNewUrl: 'http://10.211.67.177:8043',
+      baseURLCA: 'http://10.211.67.177:8043',
+      fileUrl: 'http://10.211.67.177:8043',
       expressUrl: 'http://10.211.67.177:8043',
-      tempUrl: 'http://10.211.67.163:16300', // 1.0临时地址
+      tempUrl: 'http://10.211.67.177:8043', // 1.0临时地址
       tempToken: 'bb1bcfcb336b40e9b8602e808b053c3b', // 1.0临时token
       tempUserId: '1656481036109',
       tempAppToken: '2ecbda35d72c4ae89294464629f29f35',

BIN
static/img/pic_logo.png


+ 9 - 0
vue.config.js

@@ -1,6 +1,7 @@
 'use strict'
 const path = require('path')
 const defaultSettings = require('./src/settings.js')
+const CopyWebpack = require('copy-webpack-plugin')
 
 function resolve (dir) {
   return path.join(__dirname, dir)
@@ -67,6 +68,14 @@ module.exports = {
   },
   chainWebpack (config) {
     config.externals({ './cptable': 'var cptable' })
+
+    config.plugin('copy-webpack').use(CopyWebpack, [{
+      patterns: [{
+        from: path.resolve(__dirname, 'static/'),
+        to: 'static/'
+      }]
+    }])
+
     // it can improve the speed of the first screen, it is recommended to turn on preload
     config.plugin('preload').tap(() => [
       {