mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-14 07:26:43 +00:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
// const isDev = process.env.NODE_ENV === 'development' || !process.env.NODE_ENV
|
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true'
|
|
})
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
// images: {
|
|
// domains: ['ssfy.io']
|
|
// }
|
|
})
|