this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Open Library Covers API to allowed remote image sources

Bailey Kane 065f86fb b4ffca55

+8
+8
next.config.js
··· 3 3 /** @type {import('next').NextConfig} */ 4 4 const nextConfig = { 5 5 /* config options here */ 6 + images: { 7 + remotePatterns: [ 8 + { 9 + protocol: "https", 10 + hostname: "covers.openlibrary.org", 11 + }, 12 + ], 13 + }, 6 14 }; 7 15 8 16 module.exports = nextConfig;