Files
Snap.Hutao.Docs/docs/.vuepress/config.ts
2022-09-27 19:15:47 -07:00

36 lines
648 B
TypeScript

import { defineUserConfig } from "vuepress";
import { viteBundler } from '@vuepress/bundler-vite'
import theme from "./theme.js";
export default defineUserConfig({
base: "/",
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: {},
}),
});