2023-11-14 21:55:36 +05:30
|
|
|
import { type Theme } from "vitepress";
|
2023-11-12 22:12:57 +05:30
|
|
|
import DefaultTheme from "vitepress/theme";
|
|
|
|
import Layout from "./Layout.vue";
|
|
|
|
import "./style.css";
|
|
|
|
import "uno.css";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
extends: DefaultTheme,
|
2023-11-14 22:48:52 +05:30
|
|
|
Layout,
|
2023-11-12 22:12:57 +05:30
|
|
|
enhanceApp({ app, router, siteData }) {},
|
|
|
|
} satisfies Theme;
|