Files
SweetHomeWeb/next.config.mjs

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;