27 lines
527 B
TypeScript
27 lines
527 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
loader: "custom",
|
|
loaderFile: "./lib/openinary-loader.ts",
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'res.cloudinary.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'media.ayris.tech',
|
|
},
|
|
],
|
|
},
|
|
/* other config options here */
|
|
};
|
|
|
|
export default nextConfig;
|