Skip to content

Commit

Permalink
Update: docs build for new base path
Browse files Browse the repository at this point in the history
  • Loading branch information
juzser committed Mar 5, 2024
1 parent 1f5340a commit 22d93f1
Show file tree
Hide file tree
Showing 3,464 changed files with 412,387 additions and 430,239 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 5 additions & 5 deletions docs/dist/404.html

Large diffs are not rendered by default.

116 changes: 116 additions & 0 deletions docs/dist/assets/app.IN6-itSI.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
import { j as inBrowser, al as useUpdateHead, am as RouterSymbol, an as initData, ao as dataSymbol, ap as Content, aq as ClientOnly, ar as siteDataRef, as as createSSRApp, at as createRouter, au as pathToFile, X as __vitePreload, d as defineComponent, u as useData, l as onMounted, z as watchEffect, av as usePrefetch, aw as useCopyCode, ax as useCodeGroups, a3 as h } from "./chunks/framework.1qnja6qJ.js";
import { R as RawTheme } from "./chunks/theme.qpUvgkaA.js";
function resolveThemeExtends(theme) {
if (theme.extends) {
const base = resolveThemeExtends(theme.extends);
return {
...base,
...theme,
async enhanceApp(ctx) {
if (base.enhanceApp)
await base.enhanceApp(ctx);
if (theme.enhanceApp)
await theme.enhanceApp(ctx);
}
};
}
return theme;
}
const Theme = resolveThemeExtends(RawTheme);
const VitePressApp = defineComponent({
name: "VitePressApp",
setup() {
const { site, lang, dir } = useData();
onMounted(() => {
watchEffect(() => {
document.documentElement.lang = lang.value;
document.documentElement.dir = dir.value;
});
});
if (site.value.router.prefetchLinks) {
usePrefetch();
}
useCopyCode();
useCodeGroups();
if (Theme.setup)
Theme.setup();
return () => h(Theme.Layout);
}
});
async function createApp() {
const router = newRouter();
const app = newApp();
app.provide(RouterSymbol, router);
const data = initData(router.route);
app.provide(dataSymbol, data);
app.component("Content", Content);
app.component("ClientOnly", ClientOnly);
Object.defineProperties(app.config.globalProperties, {
$frontmatter: {
get() {
return data.frontmatter.value;
}
},
$params: {
get() {
return data.page.value.params;
}
}
});
if (Theme.enhanceApp) {
await Theme.enhanceApp({
app,
router,
siteData: siteDataRef
});
}
return { app, router, data };
}
function newApp() {
return createSSRApp(VitePressApp);
}
function newRouter() {
let isInitialPageLoad = inBrowser;
let initialPath;
return createRouter((path) => {
let pageFilePath = pathToFile(path);
let pageModule = null;
if (pageFilePath) {
if (isInitialPageLoad) {
initialPath = pageFilePath;
}
if (isInitialPageLoad || initialPath === pageFilePath) {
pageFilePath = pageFilePath.replace(/\.js$/, ".lean.js");
}
if (false)
;
else {
pageModule = __vitePreload(() => import(
/*@vite-ignore*/
pageFilePath
), true ? __vite__mapDeps([]) : void 0);
}
}
if (inBrowser) {
isInitialPageLoad = false;
}
return pageModule;
}, Theme.NotFound);
}
if (inBrowser) {
createApp().then(({ app, router, data }) => {
router.go().then(() => {
useUpdateHead(router.route, data.site);
app.mount("#app");
});
});
}
export {
createApp
};
function __vite__mapDeps(indexes) {
if (!__vite__mapDeps.viteFileDeps) {
__vite__mapDeps.viteFileDeps = []
}
return indexes.map((i) => __vite__mapDeps.viteFileDeps[i])
}
116 changes: 0 additions & 116 deletions docs/dist/assets/app.p18xYqFg.js

This file was deleted.

4 changes: 0 additions & 4 deletions docs/dist/assets/chunks/@localSearchIndexroot.A7O_l1Bv.js

This file was deleted.

4 changes: 4 additions & 0 deletions docs/dist/assets/chunks/@localSearchIndexroot.lobPpDoJ.js

Large diffs are not rendered by default.

100 changes: 0 additions & 100 deletions docs/dist/assets/chunks/AcceptsSvgOnly.b0xkkkaG.js

This file was deleted.

Loading

0 comments on commit 22d93f1

Please sign in to comment.