Files
nextjs-notion-starter-kit/next.config.js
2022-03-25 23:07:37 -04:00

20 lines
473 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-var-requires
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
})
module.exports = withBundleAnalyzer({
staticPageGenerationTimeout: 300,
images: {
domains: [
'www.notion.so',
'notion.so',
'images.unsplash.com',
'pbs.twimg.com',
'abs.twimg.com',
'transitivebullsh.it'
],
formats: ['image/avif', 'image/webp']
}
})