优化预加载策略

This commit is contained in:
mtvpls
2026-06-17 10:14:03 +08:00
parent 88c4c6a783
commit 84afb97f9f
3 changed files with 10 additions and 4 deletions
+3 -3
View File
@@ -896,7 +896,7 @@ function HomeClient() {
</button>
{musicEnabled && (
<Link href='/music'>
<Link href='/music' prefetch={false}>
<button
className='p-1.5 rounded-lg text-green-500 hover:text-green-600 transition-colors'
title='音乐视听'
@@ -907,7 +907,7 @@ function HomeClient() {
)}
{mangaEnabled && (
<Link href='/manga'>
<Link href='/manga' prefetch={false}>
<button
className='p-1.5 rounded-lg text-emerald-500 hover:text-emerald-600 transition-colors'
title='漫画展馆'
@@ -918,7 +918,7 @@ function HomeClient() {
)}
{booksEnabled && (
<Link href='/books'>
<Link href='/books' prefetch={false}>
<button
className='p-1.5 rounded-lg text-amber-500 hover:text-amber-600 transition-colors'
title='电子书馆'