Files
SweetHome/next.config.mjs
Claw AI ba389042c2
All checks were successful
Build frontend / build (push) Successful in 53s
chore: add nip.io domain with SSL for HTTPS notifications
2026-03-31 22:38:11 +00:00

24 lines
490 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/**",
},
],
},
// basePath: "/sweetHome",
// assetPrefix: "/sweetHome/",
};
export default nextConfig;