2025-10-08 09:44:24 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-10-21 13:54:21 +07:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [new URL('https://demopc8.hurasoft.com/static/assets/htpstore/images/**')],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{ protocol: "https", hostname: "demopc8.hurasoft.com", pathname: "/static/**" },
|
|
|
|
|
{ protocol: "https", hostname: "demopc8.hurasoft.com", pathname: "/media/**" },
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-10-08 09:44:24 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|