this repo has no description
1import type {NextConfig} from 'next';
2
3const nextConfig: NextConfig = {
4 images: {
5 remotePatterns: [
6 {
7 protocol: 'https',
8 hostname: 'cdn.bsky.app',
9 },
10 {
11 protocol: 'https',
12 hostname: 'bsky.social',
13 },
14 {
15 protocol: 'https',
16 hostname: '*.bsky.social',
17 },
18 {
19 protocol: 'https',
20 hostname: 'media.tenor.com',
21 },
22 {
23 protocol: 'https',
24 hostname: 'i.giphy.com',
25 },
26 ],
27 },
28};
29
30export default nextConfig;