Files
loyaly-merchant/next.config.ts
2026-08-05 18:43:07 +05:30

17 lines
261 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;