ホットリロードが効かない…

公開日
2022-09-19
投稿者
Ryousuke Kamei
#tag

next.configに追記するだけ。これだけ

module.exports = {
  reactStrictMode: true,
  webpackDevMiddleware: config => {
    config.watchOptions = {
      poll: 800,
      aggregateTimeout: 300,
    }
    return config
  },
}