blob: 19db13e93a627afaca456576cb4b39f34848517b [file] [log] [blame]
Samuel Shuert8629d792024-02-07 17:41:02 -05001/** @type {import('next').NextConfig} */
2const nextConfig = {
3 images: {
4 remotePatterns: [
5 {
6 hostname: "img.icons8.com"
7 }
8 ]
9 }
10};
11
12export default nextConfig;