-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
23 lines (21 loc) · 1.04 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const withMDX = require('@next/mdx')()
module.exports = withMDX({
pageExtensions: ['mdx', 'jsx', 'js', 'ts', 'tsx'],
async redirects() {
// TODO port content
return [
{ source: '/Redux-Webpack', destination: '/', permanent: false },
{ source: '/Explorations-in-CSS-animations', destination: '/', permanent: false },
{ source: '/Placeholders-in-Sass', destination: '/', permanent: false },
{ source: '/REST', destination: '/', permanent: false },
{ source: '/shynav', destination: '/', permanent: false },
{ source: '/Built-with-Jekyll', destination: '/', permanent: false },
{ source: '/barcamp-2013', destination: '/', permanent: false },
{ source: '/d3-js', destination: '/', permanent: false },
{ source: '/a-new-save-icon', destination: '/', permanent: false },
{ source: '/device-independence', destination: '/', permanent: false },
{ source: '/minimalist', destination: '/', permanent: false },
{ source: '/sass-loops', destination: '/', permanent: false }
]
},
})