Fix startup

This commit is contained in:
lumijiez
2025-06-17 20:09:44 +03:00
parent 9028cf0f53
commit 4f5b4f1393
8 changed files with 53 additions and 16 deletions

View File

@@ -1,4 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
webpack: (config, { dev }) => {
if (dev) {
config.watchOptions = {
poll: 1000,
aggregateTimeout: 300,
}
}
return config
},
}
export default nextConfig;
export default nextConfig;