24 lines
417 B
TypeScript
24 lines
417 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "lh3.googleusercontent.com",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
serverExternalPackages: [
|
|
"puppeteer",
|
|
"puppeteer-extra",
|
|
"puppeteer-extra-plugin-stealth",
|
|
],
|
|
|
|
experimental: {},
|
|
};
|
|
|
|
export default nextConfig;
|