11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
webpack: config => {
|
|
config.externals.push('pino-pretty', 'lokijs', 'encoding')
|
|
return config
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|