Files
hoanghapc_nextJs/next.config.ts
2026-01-14 17:31:59 +07:00

17 lines
313 B
TypeScript

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