13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: [
|
|
'playwright-extra',
|
|
'puppeteer-extra-plugin-stealth',
|
|
'puppeteer-extra-plugin',
|
|
],
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|