13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'avatars.githubusercontent.com',
|
|
port: '',
|
|
pathname: '**'
|
|
}
|
|
]
|
|
}
|
|
}
|