From 9b3319533b6b596bc4a3de64c54bff9948da204b Mon Sep 17 00:00:00 2001 From: zongzheng <304389312@qq.com> Date: Fri, 7 Jun 2024 21:03:05 +0800 Subject: [PATCH] add redirect Signed-off-by: zongzheng <304389312@qq.com> --- .gitignore | 1 + .vscode/settings.json | 3 +++ pages/index.vue | 6 ++++++ vercel.json | 9 +++++++++ 4 files changed, 19 insertions(+) create mode 100644 vercel.json diff --git a/.gitignore b/.gitignore index e22c6e9..837e325 100644 --- a/.gitignore +++ b/.gitignore @@ -94,3 +94,4 @@ sw.* # personal notes files .notes +.vscode/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 8cd68da..e012745 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -53,4 +53,7 @@ "editor.wordBasedSuggestions": "off", }, "todo-tree.tree.showBadges": true, + "i18n-ally.localesPaths": [ + "i18n" + ], } diff --git a/pages/index.vue b/pages/index.vue index 85d9666..7fddfe9 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -45,6 +45,12 @@ export default { img_black: require("~/assets/sources/icons/frontend-black.svg"), link:"https://mint.honeypotfinance.xyz", }, + { + text: "MakeNFT", + img: require("~/assets/sources/icons/frontend.svg"), + img_black: require("~/assets/sources/icons/frontend-black.svg"), + link:"https://nft.honeypotfinance.xyz/reveal", + }, { text: "Discord", img: require("~/assets/sources/icons/discord.svg"), diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..5fd16b5 --- /dev/null +++ b/vercel.json @@ -0,0 +1,9 @@ +{ + "redirects": [ + { + "source": "/", + "destination": "https://app.honeypotfinance.xyz/", + "permanent": false + } + ] +}