space-shuffler / next.config.mjs
enzostvs's picture
enzostvs HF staff
initial commit
f70bb71
raw
history blame contribute delete
No virus
205 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**"
}
],
},
};
export default nextConfig;