mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
|
|
export const component = defineComponentMetadata({
|
|
name: 'hideHomeCarousel',
|
|
displayName: '隐藏首页轮播图',
|
|
entry: none,
|
|
tags: [componentsTags.style],
|
|
urlInclude: [/^https:\/\/www\.bilibili\.com\/$/, /^https:\/\/www\.bilibili\.com\/index\.html$/],
|
|
instantStyles: [
|
|
{
|
|
name: 'hide-home-carousel',
|
|
style: () => import('./hide-home-carousel.scss'),
|
|
},
|
|
],
|
|
})
|