File size: 429 Bytes
bc774a3 26cefad bc774a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'huggingface.co',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'aeiljuispo.cloudimg.io',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;
|