Files
xodo-frontend/next.config.ts
2026-02-22 13:31:17 +01:00

17 lines
282 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "strapi.xodo.ro",
port: "",
pathname: "/uploads/**",
},
],
},
};
export default nextConfig;