mirror of
https://github.com/tachiyomiorg/website.git
synced 2025-01-19 05:21:15 +01:00
20 lines
313 B
JavaScript
20 lines
313 B
JavaScript
module.exports = [
|
|
[
|
|
'@vuepress/back-to-top'
|
|
],
|
|
[
|
|
'@vuepress/google-analytics',
|
|
{
|
|
'ga': 'UA-148212082-1'
|
|
}
|
|
],
|
|
[
|
|
'container',
|
|
{
|
|
type: 'expander',
|
|
before: info => `<details class="expander_details"><summary class="expander_summary">${info}</summary>\n`,
|
|
after: '</details>\n'
|
|
}
|
|
]
|
|
];
|