logocreator / next.config.mjs
fengmiguoji's picture
Upload folder using huggingface_hub
c0a5c18 verified
raw
history blame contribute delete
249 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'sc-maas.oss-cn-shanghai.aliyuncs.com',
},
],
},
};
export default nextConfig;