-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
33 lines (32 loc) · 823 Bytes
/
next.config.js
File metadata and controls
33 lines (32 loc) · 823 Bytes
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
const withImages = require('next-images');
const ESLintPlugin = require('eslint-webpack-plugin');
module.exports = withImages({
TrailingSlash: true,
images: {
disableStaticImages: true
},
exportPathMap: function() {
return {
'/': { page: '/' },
'/contact': { page: '/contact' },
'/login': { page: '/login' },
'/register': { page: '/register' },
'/blank-page': { page: '/blank-page' },
};
},
publicRuntimeConfig: {
localeSubpaths: typeof process.env.LOCALE_SUBPATHS === 'string'
? process.env.LOCALE_SUBPATHS
: 'none',
},
webpack: (config, options) => {
cssModules: true,
config.plugins.push(
// new ESLintPlugin({
// exclude: ['node_modules']
// })
);
config.node = {}
return config;
},
});