Files
hoanghapc_nextJs/next.config.ts

17 lines
313 B
TypeScript
Raw Normal View History

2025-12-29 17:43:31 +07:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2026-01-14 17:31:59 +07:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'hoanghapccdn.com',
pathname: '/media/**',
},
],
},
2025-12-29 17:43:31 +07:00
};
export default nextConfig;