show some featured images

This commit is contained in:
2024-05-10 16:20:19 +02:00
parent db8c88ffba
commit de0af201cc
11 changed files with 73 additions and 12 deletions

View File

@ -1,4 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "**",
},
],
},
};
export default nextConfig;