Files
SweetHome/next.config.mjs
Claw AI 81674c4aa7
All checks were successful
Build frontend / build (push) Successful in 55s
fix: add remote image pattern for next.config.mjs
2026-03-31 19:45:03 +00:00

19 lines
367 B
JavaScript

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