generated from nhcarrigan/template
13 lines
192 B
JavaScript
13 lines
192 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "cdn.nhcarrigan.com"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|