19 lines
349 B
JavaScript
19 lines
349 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
webpack: config => {
|
||
|
config.externals.push('pino-pretty', 'lokijs', 'encoding')
|
||
|
return config
|
||
|
},
|
||
|
images: {
|
||
|
remotePatterns: [
|
||
|
{
|
||
|
protocol: 'https',
|
||
|
hostname: 'api.web3modal.com',
|
||
|
port: '',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|