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;

View File

@@ -62,7 +62,7 @@ export default function Home() {
<div
className="absolute inset-0 bg-gradient-to-r from-red-600 to-pink-600 rounded-xl opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<span className="relative flex items-center gap-2">
Check
Checkaaaaa
</span>
</a>
</div>
@@ -168,7 +168,7 @@ export default function Home() {
<div
className="absolute inset-0 bg-gradient-to-r from-red-600 to-pink-600 rounded-xl opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<span className="relative flex items-center gap-2">
Check
Checkaaaaa
</span>
</a>
<a