mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
32 lines
759 B
TypeScript
32 lines
759 B
TypeScript
import { defineConfig } from "vitepress";
|
|
import { zhConfig } from "./config/zh";
|
|
import { enConfig } from "./config/en";
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
base: "/frp-panel/",
|
|
locales: {
|
|
root: {
|
|
label: "简体中文",
|
|
...zhConfig,
|
|
},
|
|
en: {
|
|
label: "English",
|
|
...enConfig,
|
|
},
|
|
},
|
|
title: "Frp-Panel WIKI",
|
|
description: "Wiki of vaalacat's wonderful frp-panel",
|
|
themeConfig: {
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
},
|
|
vite: {
|
|
server: {
|
|
port: 5467,
|
|
strictPort: true,
|
|
host: "0.0.0.0",
|
|
allowedHosts: true,
|
|
},
|
|
},
|
|
});
|