sparkast/next.config.mjs
2024-03-03 02:16:02 +08:00

15 lines
305 B
JavaScript

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