19 lines
460 B
TypeScript
19 lines
460 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
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;
|