2023-10-27 02:34:41 +05:30
|
|
|
import { h } from "vue";
|
2023-10-31 00:02:25 +05:30
|
|
|
import {type Theme, inBrowser } from "vitepress";
|
2023-10-27 02:34:41 +05:30
|
|
|
import DefaultTheme from "vitepress/theme";
|
|
|
|
import "./style.css";
|
2023-10-31 00:02:25 +05:30
|
|
|
import "uno.css";
|
|
|
|
|
|
|
|
if (inBrowser)
|
|
|
|
import('./pwa')
|
|
|
|
|
2023-10-27 00:42:13 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
Layout: () => {
|
|
|
|
return h(DefaultTheme.Layout, null, {
|
2023-10-27 02:34:41 +05:30
|
|
|
});
|
2023-10-27 00:42:13 +05:30
|
|
|
},
|
|
|
|
enhanceApp({ app, router, siteData }) {
|
2023-10-27 02:34:41 +05:30
|
|
|
},
|
|
|
|
} satisfies Theme;
|