File size: 287 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
/** @type {import('next').NextConfig} */
module.exports = {
  onDemandEntries: {
    // Make sure entries are not getting disposed.
    maxInactiveAge: 1000 * 60 * 60,
  },
  // scroll position can be finicky with the
  // indicators showing so hide by default
  devIndicators: false,
}