This commit is contained in:
2025-10-21 13:54:21 +07:00
parent 6c4d6c49fc
commit f89ff598a2
40 changed files with 40767 additions and 145 deletions

View File

@@ -1,7 +1,18 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
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/**" },
],
},
};
export default nextConfig;