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