Files
solo-company-feed/next.config.js
爱喝水的木子 d2f9caf202 fix
2026-03-13 16:41:25 +08:00

14 lines
217 B
JavaScript

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