10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
const nextConfig = {
|
||
|
|
images: {
|
||
|
|
domains: ["netidhub.com"],
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|