chatbot-template/next.config.js
Lee Robinson cc1c24718e More
2023-11-26 12:32:01 -06:00

13 lines
246 B
JavaScript

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