19 lines
321 B
TypeScript
19 lines
321 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'placehold.co',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'b2cimpulsmx.vteximg.com.br',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|