mirror of
https://github.com/ChanX21/Sigillum
synced 2026-04-21 15:47:55 +00:00
21 lines
473 B
TypeScript
21 lines
473 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
domains: ["gray-academic-grouse-23.mypinata.cloud", "api.dicebear.com"],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "gray-academic-grouse-23.mypinata.cloud",
|
|
pathname: "/ipfs/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "api.dicebear.com",
|
|
pathname: "/7.x/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|