35 lines
646 B
JavaScript
35 lines
646 B
JavaScript
/**
|
|
* Image Hosts Configuration (add your image hosts here)
|
|
*/
|
|
|
|
export const imageHosts = [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.pexels.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.pixabay.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img.rocket.new',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.supabase.co',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.supabase.in',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'www.broadcastbeat.com',
|
|
},
|
|
];
|