2019-09-23 12:23:00 +02:00
|
|
|
module.exports = [
|
2020-04-30 00:36:43 +02:00
|
|
|
["@vuepress/back-to-top"],
|
2020-01-08 23:15:44 -05:00
|
|
|
[
|
|
|
|
"clean-urls",
|
|
|
|
{
|
2020-05-21 04:47:01 +02:00
|
|
|
normalSuffix: "/",
|
|
|
|
},
|
2020-01-08 23:15:44 -05:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"@vuepress/google-analytics",
|
|
|
|
{
|
2020-05-21 04:47:01 +02:00
|
|
|
ga: "UA-148212082-1",
|
|
|
|
},
|
2020-01-08 23:15:44 -05:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "expander",
|
2020-05-21 04:47:01 +02:00
|
|
|
before: (info) =>
|
2020-02-05 16:31:13 +01:00
|
|
|
`<details class="expander"><summary class="expansion">${info}</summary>`,
|
2020-05-21 04:47:01 +02:00
|
|
|
after: "</details>",
|
|
|
|
},
|
2020-01-08 23:15:44 -05:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "guide",
|
2020-05-21 04:47:01 +02:00
|
|
|
before: (info) => `<div class="guide"><p class="title">${info}</p>`,
|
|
|
|
after: "</div>",
|
|
|
|
},
|
2020-01-08 23:15:44 -05:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "aside",
|
2020-05-21 04:47:01 +02:00
|
|
|
defaultTitle: "",
|
|
|
|
},
|
2020-03-05 06:11:00 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "aside-guide",
|
2020-05-21 04:47:01 +02:00
|
|
|
defaultTitle: "",
|
|
|
|
},
|
2020-04-30 00:36:43 +02:00
|
|
|
],
|
2020-04-30 18:53:10 +02:00
|
|
|
[
|
|
|
|
"vuepress-plugin-sitemap",
|
|
|
|
{
|
2020-05-21 04:47:01 +02:00
|
|
|
hostname: "https://tachiyomi.org",
|
|
|
|
},
|
|
|
|
],
|
2019-09-23 12:23:00 +02:00
|
|
|
];
|