9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['puppeteer']
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|