mirror of
https://github.com/WuKongIM/WuKongIMDocs
synced 2025-06-03 07:42:48 +00:00
17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
import { h } from "vue";
|
|
import Theme from "vitepress/theme";
|
|
import "./styles/var.css";
|
|
import "./styles/custom.css";
|
|
import 'uno.css';
|
|
|
|
import HomePreview from "./components/HomePreview.vue";
|
|
|
|
export default {
|
|
...Theme,
|
|
Layout() {
|
|
return h(Theme.Layout, null, {
|
|
"home-features-after": () => h(HomePreview),
|
|
});
|
|
},
|
|
};
|