mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
import { videoAndBangumiUrls } from '@/core/utils/urls'
|
|
|
|
export const component = defineComponentMetadata({
|
|
name: 'hideRelatedVideos',
|
|
displayName: '隐藏视频推荐',
|
|
entry: none,
|
|
instantStyles: [
|
|
{
|
|
name: 'hideRelatedVideos',
|
|
style: () => import('./related-videos.scss'),
|
|
},
|
|
],
|
|
tags: [componentsTags.style, componentsTags.video],
|
|
urlInclude: videoAndBangumiUrls,
|
|
})
|