Initial commit

This commit is contained in:
Masterain
2022-09-27 18:46:44 -07:00
parent 9dce7a8fcd
commit 1dccc22e55
45 changed files with 17271 additions and 0 deletions

35
docs/.vuepress/config.ts Normal file
View File

@@ -0,0 +1,35 @@
import { defineUserConfig } from "vuepress";
import { viteBundler } from '@vuepress/bundler-vite'
import theme from "./theme.js";
export default defineUserConfig({
base: "/Snap.Hutao.Docs/",
dest: "./dist",
locales: {
"/": {
lang: "zh-CN",
title: "胡桃工具箱",
description: "多功能的原神工具箱",
},
"/en/": {
lang: "en-US",
title: "Snap Hutao",
description: "Super utilitarian Genshin Impact Tool",
},
},
theme,
shouldPrefetch: false,
bundler: viteBundler({
viteOptions: {
build:{
chunkSizeWarningLimit: 1500
}
},
vuePluginOptions: {},
}),
});