diff --git a/bookmark_front/.gitignore b/bookmark_front/.gitignore
index aa1baf2..c6c57be 100644
--- a/bookmark_front/.gitignore
+++ b/bookmark_front/.gitignore
@@ -1,6 +1,7 @@
.DS_Store
node_modules
/dist
+package-lock.json
yarn.lock
# local env files
diff --git a/bookmark_front/src/global.less b/bookmark_front/src/global.less
index c865302..de0ed68 100644
--- a/bookmark_front/src/global.less
+++ b/bookmark_front/src/global.less
@@ -14,7 +14,7 @@
/**
* bottom配置
*/
-@bottomHeight: 0.4rem; //bottom高度
+@bottomHeight: 0.5rem; //bottom高度
/**
* content配置
diff --git a/bookmark_front/src/layout/main/Bottom.vue b/bookmark_front/src/layout/main/Bottom.vue
index e16be90..f4438e0 100644
--- a/bookmark_front/src/layout/main/Bottom.vue
+++ b/bookmark_front/src/layout/main/Bottom.vue
@@ -1,12 +1,38 @@
@@ -16,6 +42,7 @@ export default {
background-color: rgb(207, 198, 198);
height: @bottomHeight;
display: flex;
+ flex-direction: column;
justify-content: center;
align-items: center;
font-size: 0.14rem;
diff --git a/bookmark_front/vue.config.js b/bookmark_front/vue.config.js
index cbaf5b4..5d484d5 100644
--- a/bookmark_front/vue.config.js
+++ b/bookmark_front/vue.config.js
@@ -7,7 +7,8 @@ module.exports = {
proxy: {
"/bookmark/api": {
//这里最好有一个 /
- target: "http://localhost:8088", // 服务器端接口地址
+ // target: "http://localhost:8088", // 服务器端接口地址
+ target: "https://fleyx.com", // 服务器端接口地址
ws: true, //如果要代理 websockets,配置这个参数
// 如果是https接口,需要配置这个参数
changeOrigin: true, //是否跨域