Browse Source

auto commit

gcz 3 years ago
parent
commit
35c9c0fc22
4 changed files with 11 additions and 11 deletions
  1. 1 1
      .env.production
  2. BIN
      public/favicon.png
  3. 1 1
      public/index.html
  4. 9 9
      vue.config.js

+ 1 - 1
.env.production

@@ -2,4 +2,4 @@
 NODE_ENV = production
 
 # 生产环境
-VUE_APP_BASE_API = 'http://172.16.90.64:7200/company/'
+VUE_APP_BASE_API = 'http://172.16.90.64:7200/teacher/'

BIN
public/favicon.png


+ 1 - 1
public/index.html

@@ -4,7 +4,7 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
-    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
+    <link rel="icon" href="<%= BASE_URL %>favicon.png">
     <title><%= htmlWebpackPlugin.options.title %></title>
   </head>
   <body>

+ 9 - 9
vue.config.js

@@ -1,13 +1,13 @@
 
 module.exports = {
-  // chainWebpack: config => {
-  //   config
-  //     .plugin('html')
-  //     .tap(args => {
-  //       args[0].title = '退役军人'
-  //       return args
-  //     })
-  // },
+  chainWebpack: config => {
+    config
+      .plugin('html')
+      .tap(args => {
+        args[0].title = '退役军人'
+        return args
+      })
+  },
 
   css: {
     loaderOptions: {
@@ -34,5 +34,5 @@ module.exports = {
     disableHostCheck: true
   },
   // productionSourceMap: false,
-  // publicPath: process.env.NODE_ENV === 'production' ? '/' : '/'
+  publicPath: process.env.NODE_ENV === 'production' ? './' : '/'
 }