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