iportal
Version:
web-portal
21 lines (19 loc) • 419 B
text/typescript
import html from './html.html'
import { ScopeCodeHighlighter } from '../components/code-highlight'
export default {
config: {
level: 3,
title: '',
free: true,
source: {
html
},
animation: 'slideUp',
color: '#bd243f',
background: 'auto' as 'auto',
capture: (e) => {
return (e.href ?? String(e)).indexOf('empty') !== -1
}
},
components: [ScopeCodeHighlighter]
}