Skip to content

Commit

Permalink
fix(docs): extend default theme, no override
Browse files Browse the repository at this point in the history
  • Loading branch information
bojanrajh committed Oct 9, 2024
1 parent 70a52ba commit b643b9b
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions apps/docs/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@ import { SWAGTheme } from "vitepress-shopware-docs";
// import AI from "./components/AI.vue";
import "./custom.css";

export default Object.assign(
{
...SWAGTheme(),
export default SWAGTheme({
enhanceApp: ({ app }: { app: App }) => {
// app.component("AI", AI);
// app.provide('some-injection-key-if-needed', VALUE)
},
{
enhanceApp({ app }: { app: App }) {
// app.component("AI", AI);
// app.provide('some-injection-key-if-needed', VALUE)
},
},
);
})

0 comments on commit b643b9b

Please sign in to comment.