This repository was archived by the owner on Oct 12, 2024. It is now read-only.
forked from abedzantout/nextjs-blog-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.js
60 lines (49 loc) · 1.42 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const path = require('path');
const { generateAllArticles } = require('./utils/helpers');
const next_config = {
webpack: config => {
config.plugins = config.plugins || [];
// Here is the magic
// We push our config into the resolve.modules array
config.resolve.modules.push(path.resolve('./'));
config.resolve.alias['template'] = path.join(__dirname, 'template');
return config;
},
env: {
CONTENTFUL_SPACE: process.env.CONTENTFUL_SPACE,
CONTENTFUL_TOKEN: process.env.CONTENTFUL_TOKEN
},
redirects: async () => {
return [
{
source: '/platform-heroes-github-marketplace',
destination: 'https://www.apideck.com/blog/platform-heroes-github-marketplace',
permanent: true,
}
// {
// source: '/what-is-a-unified-api',
// destination: 'https://www.apideck.com/blog/the-power-of-real-time-unified-apis',
// permanent: true,
// }
]
},
exportPathMap: async () => {
const articles = await generateAllArticles();
const insights = articles.reduce(
(pages, entry) =>
Object.assign({}, pages, {
[`/post/${entry.slug}`]: {
page: '/post',
query: { post: entry.slug }
}
}),
{}
);
const pages = {
'/': { page: '/' },
'/post': { page: '/post' }
};
return Object.assign({}, pages, insights);
}
};
module.exports = next_config;