Files
kite-qr/next.config.ts

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;