Files
imprink/webui/next.config.mjs
2025-06-17 20:09:44 +03:00

14 lines
302 B
JavaScript

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