From 1dadaaa7b06bfda12452f583cbbf994a65a74af6 Mon Sep 17 00:00:00 2001 From: Jonathon Hammond Date: Fri, 25 Mar 2022 14:35:27 -0400 Subject: [PATCH] Added a redirect for the functions page movement --- 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',