mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
12 lines
272 B
JavaScript
12 lines
272 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']
|
|
}
|
|
})
|