From 5113cf0d96f94aa0d93e4cebc7a259de51aecffd Mon Sep 17 00:00:00 2001 From: Jonathon Hammond Date: Sat, 26 Mar 2022 21:21:34 -0400 Subject: [PATCH] Added a redirect for the functions page movement (#1319) --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index 70eff04e..2d775c6b 100755 --- a/next.config.js +++ b/next.config.js @@ -8,6 +8,11 @@ const withFonts = require('next-fonts'); async function redirects() { return [ + { + source: '/references/language-functions', + destination: '/write-smart-contracts/language-functions', + permanent: true, + }, { source: '/write-smart-contracts/nft', destination: '/write-smart-contracts/nft-tutorial',