-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnext.config.js
More file actions
27 lines (27 loc) · 599 Bytes
/
next.config.js
File metadata and controls
27 lines (27 loc) · 599 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
module.exports = {
reactStrictMode: true,
// distDir: 'build',
// basePath: '/blog',
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
// experimental: {
// images: {
// unoptimized: true,
// },
// },
eslint: {
dirs: ['src/pages', 'src/components', 'src/store', 'src/helpers', 'src/models'],
},
// exportPathMap: async function (
// defaultPathMap,
// { dev, dir, outDir, distDir, buildId }
// ) {
// return {
// '/': { page: '/' },
// '/editor': { page: '/editor' },
// '/choose': { page: '/choose' }
// }
// },
};