Browse Source

Added a redirect for the functions page movement (#1319)

feat/clarity-tutorials
Jonathon Hammond 3 years ago
committed by Alejandro Criado-Pérez
parent
commit
2cdbc4a5ed
  1. 5
      next.config.js

5
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',

Loading…
Cancel
Save