forked from clintonwoo/hackernews-react-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
60 lines (59 loc) · 1.86 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 withTypescript = require('@zeit/next-typescript');
const withCSS = require('@zeit/next-css');
module.exports = withTypescript(
withCSS(
{
async exportPathMap() {
return {
'/': { page: '/' },
'/news': { page: '/' },
'/active': { page: '/active' },
'/ask': { page: '/ask' },
'/best': { page: '/best' },
'/bestcomments': { page: '/bestcomments' },
'/bookmarklet': { page: '/bookmarklet' },
'/dmca': { page: '/dmca' },
'/formatdoc': { page: '/formatdoc' },
'/front': { page: '/front' },
'/item': { page: '/item' },
'/jobs': { page: '/jobs' },
'/leaders': { page: '/leaders' },
'/lists': { page: '/lists' },
'/login': { page: '/login' },
'/newcomments': { page: '/newcomments' },
'/newest': { page: '/newest' },
'/newpoll': { page: '/newpoll' },
'/newsfaq': { page: '/newsfaq' },
'/newsguidelines': { page: '/newsguidelines' },
'/newswelcome': { page: '/newswelcome' },
'/noobcomments': { page: '/noobcomments' },
'/security': { page: '/security' },
'/show': { page: '/show' },
'/submit': { page: '/submit' },
'/threads': { page: '/threads' },
// '/p/975': { page: '/post', query: { id: '975' } },
// '/p/481': { page: '/post', query: { id: '481' } },
};
},
webpack: (config, { dev, defaultLoaders }) => {
// Perform customizations to webpack config
if (!dev) {
config.module.rules.push({
test: /\.(css|ico|gif)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'static/',
},
},
],
});
}
config.node = { fs: 'empty' };
return config;
},
cssModules: false,
}
)
);