simple-links/next.config.js
2023-07-02 12:02:11 +01:00

16 lines
224 B
JavaScript

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