16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
serverComponentsHmrCache: false,
|
|
},
|
|
images: {
|
|
domains: [
|
|
"webuild-dev.s3.eu-north-1.amazonaws.com",
|
|
"images.unsplash.com",
|
|
"via.placeholder.com",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |