Files
item_opina/next.config.ts
gestions-UO 838bec205e first commit
2026-05-11 20:50:44 +02:00

15 lines
259 B
TypeScript

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