2019-09-23 12:23:00 +02:00
|
|
|
module.exports = [
|
2020-01-08 23:15:44 -05:00
|
|
|
[
|
|
|
|
"clean-urls",
|
|
|
|
{
|
|
|
|
normalSuffix: "/"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
["@vuepress/back-to-top"],
|
|
|
|
[
|
|
|
|
"@vuepress/google-analytics",
|
|
|
|
{
|
|
|
|
ga: "UA-148212082-1"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "expander",
|
|
|
|
before: info =>
|
|
|
|
`<details class="expander content"><summary class="expander expansion">${info}</summary>`,
|
|
|
|
after: "</details>"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "guide",
|
|
|
|
before: info => `<div class="guide"><p class="title">${info}</p>`,
|
|
|
|
after: "</div>"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"vuepress-plugin-container",
|
|
|
|
{
|
|
|
|
type: "aside",
|
|
|
|
defaultTitle: ""
|
|
|
|
}
|
|
|
|
]
|
2019-09-23 12:23:00 +02:00
|
|
|
];
|