-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.js
35 lines (34 loc) · 1.01 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
// Enable this code below for Server Side Rendering/Translation (SSR)
// const { i18n } = require('./next-i18next.config')
const withImages = require('next-images');
const ESLintPlugin = require('eslint-webpack-plugin');
module.exports = withImages({
// Enable this code below for Server Side Rendering/Translation (SSR)
// i18n,
// output: 'export', // Please disable/comment for SSR Mode
output: 'standalone',
trailingSlash: true,
images: {
disableStaticImages: true
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
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;
},
});