fake_shop/next.config.mjs

18 lines
302 B
JavaScript
Raw Normal View History

2025-02-07 18:04:25 +08:00
/** @type {import('next').NextConfig} */
2025-02-11 16:50:04 +08:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "imageplaceholder.net",
},
{
protocol: "https",
hostname: "s2.loli.net",
},
],
},
};
2025-02-07 18:04:25 +08:00
export default nextConfig;