Files
Snap.Hutao.Docs/docs/.vuepress/config.ts
2023-12-19 20:05:50 +03:00

176 lines
5.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { viteBundler } from "@vuepress/bundler-vite";
import { docsearchPlugin } from "@vuepress/plugin-docsearch";
import { googleAnalyticsPlugin } from "@vuepress/plugin-google-analytics";
import { defineUserConfig } from "vuepress";
import { redirectPlugin } from "vuepress-plugin-redirect";
import theme from "./theme.js";
export default defineUserConfig({
base: "/",
dest: "./dist",
head: [
[
"script",
{
src: "https://umami.irain.in/script.js",
"data-website-id": "1a7be6c3-a024-47e2-9a42-29e66b997a36",
async: "",
defer: "",
},
],
[
"script",
{
type: "module",
src: "https://get.microsoft.com/badge/ms-store-badge.bundled.js",
},
],
],
locales: {
"/zh/": {
lang: "zh-CN",
title: "胡桃工具箱",
description: "多功能的原神工具箱",
},
"/en/": {
lang: "en-US",
title: "Snap Hutao",
description: "Super utilitarian Genshin Impact Toolkit",
},
"/ru/": {
lang: "ru-RU",
title: "Snap Hutao",
description: "Суперполезный набор инструментов для Genshin Impact",
},
},
plugins: [
docsearchPlugin({
appId: "28CTGDOOQD",
apiKey: "72d7a9a0f9f0466218ea19988886dce8",
indexName: "hutao",
locales: {
"/zh/": {
placeholder: "搜索文档",
translations: {
button: {
buttonText: "搜索文档",
buttonAriaLabel: "搜索文档",
},
modal: {
searchBox: {
resetButtonTitle: "清除查询条件",
resetButtonAriaLabel: "清除查询条件",
cancelButtonText: "取消",
cancelButtonAriaLabel: "取消",
},
startScreen: {
recentSearchesTitle: "搜索历史",
noRecentSearchesText: "没有搜索历史",
saveRecentSearchButtonTitle: "保存至搜索历史",
removeRecentSearchButtonTitle: "从搜索历史中移除",
favoriteSearchesTitle: "收藏",
removeFavoriteSearchButtonTitle: "从收藏中移除",
},
errorScreen: {
titleText: "无法获取结果",
helpText: "你可能需要检查你的网络连接",
},
footer: {
selectText: "选择",
navigateText: "切换",
closeText: "关闭",
searchByText: "搜索提供者",
},
noResultsScreen: {
noResultsText: "无法找到相关结果",
suggestedQueryText: "你可以尝试查询",
reportMissingResultsText: "你认为该查询应该有结果?",
reportMissingResultsLinkText: "点击反馈",
},
},
},
},
"/ru/": {
placeholder: "Поиск",
translations: {
button: {
buttonText: "Поиск",
buttonAriaLabel: "Поиск",
},
modal: {
searchBox: {
resetButtonTitle: "Четкие критерии запроса",
resetButtonAriaLabel: "Четкие критерии запроса",
cancelButtonText: "Назад",
cancelButtonAriaLabel: "Назад",
},
startScreen: {
recentSearchesTitle: "История поиска",
noRecentSearchesText: "Нету истории поиска",
saveRecentSearchButtonTitle: "Сохранить в историю поиска",
removeRecentSearchButtonTitle: "Удалить из истории поиска",
favoriteSearchesTitle: "Закладки",
removeFavoriteSearchButtonTitle: "Удалить из закладок",
},
errorScreen: {
titleText: "Не удалось получить результат",
helpText: "Проверте свое подключение к Интернету, а так-же запрашиваемый ресурс",
},
footer: {
selectText: "Выбрать",
navigateText: "Переключить",
closeText: "Закрыть",
searchByText: "Поиск",
},
noResultsScreen: {
noResultsText: "Не удалось ничего найти по вашему запросу :",
suggestedQueryText: "Вы можете попробовать запрос",
reportMissingResultsText: "Как вы думаете, должен ли этот запрос давать какой-то результат :> ?",
reportMissingResultsLinkText: "Связаться с нами",
},
},
},
},
"/en/": {
placeholder: "Search documents",
translations: {
button: {
buttonText: "Search documents",
},
},
},
},
}),
googleAnalyticsPlugin({
id: "G-F3LFJCE3RM",
}),
redirectPlugin({
defaultLocale: "/en/",
autoLocale: true,
switchLocale: "modal",
localeConfig: {
"/en/": ["en-US", "en-UK", "en"],
"/zh/": ["zh-CN", "zh-TW", "zh"],
"/ru/": ["ru-RU", "ru-KZ", "ru-BY", "ru-UA", "ru-MD", "ru-LV", "tt-RU", "ru"],
},
}),
],
theme,
shouldPrefetch: false,
bundler: viteBundler({
viteOptions: {
build: {
chunkSizeWarningLimit: 1500,
},
},
}),
});