2026-01-28 17:32:36 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
/* config options here */
|
|
|
|
|
reactCompiler: true,
|
2026-03-31 19:45:03 +00:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
2026-03-31 22:38:00 +00:00
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "45.93.137.91.nip.io",
|
|
|
|
|
pathname: "/api/Pictures/**",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: "http",
|
|
|
|
|
hostname: "45.93.137.91",
|
|
|
|
|
pathname: "/api/Pictures/**",
|
2026-03-31 19:45:03 +00:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-03-19 21:49:27 +03:00
|
|
|
// basePath: "/sweetHome",
|
|
|
|
|
// assetPrefix: "/sweetHome/",
|
2026-01-28 17:32:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|