33 lines
842 B
TypeScript
33 lines
842 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
loader: 'custom',
|
|
loaderFile: './lib/openinary-loader.ts',
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'lh3.googleusercontent.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'llnpipqrizjlvufxhfwf.supabase.co',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'res.cloudinary.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'media.ayris.tech',
|
|
}
|
|
],
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig; |