Skip to content

Commit

Permalink
fix: useOruga bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Sep 30, 2023
1 parent d5e1d50 commit 65c9334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/docs-next/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ export default {
case "theme-bulma": {
bulmaConfig.iconPack = "fas";
bulmaConfig.iconComponent = "vue-fontawesome";
const { oruga } = useOruga();
const oruga = useOruga();
oruga.config.setOptions(bulmaConfig);
break;
}
case "theme-bootstrap": {
bootstrapConfig.iconPack = "fas";
bootstrapConfig.iconComponent = "vue-fontawesome";
const { oruga } = useOruga();
const oruga = useOruga();
oruga.config.setOptions(bootstrapConfig);
break;
}
Expand Down

0 comments on commit 65c9334

Please sign in to comment.