feat: 支持Aplayer播放音乐的配置

This commit is contained in:
ykxkykx
2023-01-01 20:34:03 +08:00
parent 42586992b0
commit 0d0fb07eef
5 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import dynamic from 'next/dynamic'
const MusicPlayer = dynamic(
() => import('@/components/Player'),
{ ssr: false }
)
export default MusicPlayer