Commit fcb78871cbec5f664efaf6e6d62a7539ea9025a1

Authored by boyang
1 parent c9fecebb

feat: 修改底部导航栏

components/Footer.vue
... ... @@ -20,7 +20,28 @@
20 20 <p><router-link to="/about">About us</router-link></p>
21 21 <p>
22 22 <a
23   - href="https://www.linkedin.com/company/canrd/"
  23 + href="https://www.linkedin.com/company/canrd?originalSubdomain=cn"
  24 + rel="noopener noreferrer"
  25 + >LinkedIn</a
  26 + >
  27 + </p>
  28 + <p>
  29 + <a
  30 + href="https://www.amazon.com/s?me=A3A2SQ086XUS66&marketplaceID=ATVPDKIKX0DER"
  31 + rel="noopener noreferrer"
  32 + >Amazon</a
  33 + >
  34 + </p>
  35 + <p>
  36 + <a
  37 + href="https://www.youtube.com/@Canrd_Tech"
  38 + rel="noopener noreferrer"
  39 + >Youtube</a
  40 + >
  41 + </p>
  42 + <p>
  43 + <a
  44 + href="https://www.linkedin.com/company/canrd?originalSubdomain=cn"
24 45 rel="noopener noreferrer"
25 46 >LinkedIn</a
26 47 >
... ...
deploy/prod2.sh
1 1 #!/bin/bash
2 2 # 变量定义
3   -LAST_TAG="1.0.31"
4   -TAG="1.0.32"
  3 +LAST_TAG="1.0.32"
  4 +TAG="1.0.33"
5 5 TARGET_PATH="/root/web/canrud-outside-nuxt-front"
6 6 DOCKERFILE_PATH="/root/web/canrud-outside-nuxt-front/canrud-nuxt-front"
7 7 IMAGE_NAME="canrud-outside-front"
... ...
nuxt.config.ts
... ... @@ -41,8 +41,8 @@ export default defineNuxtConfig({
41 41 nitro: {
42 42 devProxy: {
43 43 "/shop": {
44   - // target: "http://47.89.254.121:8002/shop", // 线上代理地址
45   - target: "http://127.0.0.1:8002/shop",
  44 + target: "http://47.89.254.121:8002/shop", // 线上代理地址
  45 + // target: "http://127.0.0.1:8002/shop",
46 46 // target: process.env.BASE_URL || 'http://39.108.227.113:8002/shop', // 目标接口域名
47 47 changeOrigin: true, // 表示是否跨域
48 48 },
... ... @@ -50,8 +50,8 @@ export default defineNuxtConfig({
50 50 // 该配置用于服务端请求转发
51 51 routeRules: {
52 52 "/shop/**": {
53   - // proxy: "http://47.89.254.121:8002/shop/**",
54   - proxy: "http://127.0.0.1:8002/shop/**",
  53 + proxy: "http://47.89.254.121:8002/shop/**",
  54 + // proxy: "http://127.0.0.1:8002/shop/**",
55 55 // proxy: process.env.BASE_URL || 'http://39.108.227.113:8002/shop/**'
56 56 },
57 57 },
... ...