fix: add remote image pattern for next.config.mjs
All checks were successful
Build frontend / build (push) Successful in 55s

This commit is contained in:
Claw AI
2026-03-31 19:45:03 +00:00
parent cf7f51b514
commit 81674c4aa7

View File

@ -2,6 +2,15 @@
const nextConfig = { const nextConfig = {
/* config options here */ /* config options here */
reactCompiler: true, reactCompiler: true,
images: {
remotePatterns: [
{
protocol: 'http',
hostname: '45.93.137.91',
pathname: '/api/Pictures/**',
},
],
},
// basePath: "/sweetHome", // basePath: "/sweetHome",
// assetPrefix: "/sweetHome/", // assetPrefix: "/sweetHome/",
}; };