mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 17:18:09 +00:00
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
domains: ["avatars.githubusercontent.com"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|