10 lines
158 B
TypeScript
10 lines
158 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
domains: ["tech-masters.guru"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|