24 lines
490 B
JavaScript
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;
|