沈训 4 weeks ago
parent
commit
214e5cb421
  1. 6
      .env.development
  2. 5
      .env.production
  3. 2
      package.json
  4. BIN
      public/favicon.ico
  5. 3
      public/index.html
  6. 4
      vue.config.js

6
.env.development

@ -1,11 +1,11 @@
# 页面标题
VUE_APP_TITLE = 老挝支付金控管理系统
VUE_APP_TITLE = 老挝支付金控系统
# 开发环境配置
ENV = 'development'
# 老挝支付金控管理系统/开发环境
VUE_APP_BASE_API = '/dev-api'
# 若依管理系统/开发环境
VUE_APP_BASE_API = 'http://8.137.52.68:8081'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/'

5
.env.production

@ -1,11 +1,12 @@
# 页面标题
VUE_APP_TITLE = 老挝支付金控管理系统
VUE_APP_TITLE = 老挝支付金控系统
# 生产环境配置
ENV = 'production'
# 若依管理系统/生产环境
VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = 'http://8.137.52.68:8081'
# VUE_APP_BASE_API = '/prod-api'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/'

2
package.json

@ -5,7 +5,7 @@
"author": "LionLi",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build:prod": "vue-cli-service build",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"

BIN
public/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 17 KiB

3
public/index.html

@ -6,7 +6,8 @@
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= webpackConfig.name %></title>
<title>老挝金控支付系统</title>
<!-- <title><%= webpackConfig.name %></title> -->
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style>
html,

4
vue.config.js

@ -7,7 +7,7 @@ function resolve(dir) {
const CompressionPlugin = require('compression-webpack-plugin')
const name = process.env.VUE_APP_TITLE || '老挝支付金控管理系统' // 网页标题
const name = process.env.VUE_APP_TITLE || 'Coin后台管理系统' // 网页标题
const port = process.env.port || process.env.npm_config_port || 80 // 端口
@ -35,7 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://localhost:8081`,
target: `http://8.137.52.68:8081`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''

Loading…
Cancel
Save