Files
SweetHomeWeb/next.config.mjs
2026-06-30 17:17:00 +03:00

29 lines
601 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
reactCompiler: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "45.93.137.91.nip.io",
pathname: "/api/Pictures/**",
},
{
protocol: "http",
hostname: "45.93.137.91",
pathname: "/api/Pictures/**",
},
{
protocol: "http",
hostname: "45.93.137.91",
pathname: "/Pictures/**",
},
],
},
// basePath: "/sweetHome",
// assetPrefix: "/sweetHome/",
};
export default nextConfig;