Skip to content

Commit

Permalink
Merge pull request #71 from jokosusilo/patch-1
Browse files Browse the repository at this point in the history
Fix theme in light mode
  • Loading branch information
jrmybtlr authored May 15, 2024
2 parents c07128c + dd3db6b commit 593b570
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nuxt-web/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export default defineNuxtConfig({
css: ['~/assets/css/main.css'],
content: {
highlight: {
theme: 'github-dark',
theme: {
default: 'github-light',
dark: 'github-dark',
},
preload: ['javascript', 'typescript', 'json', 'html', 'css', 'yaml']
}
},
Expand All @@ -28,4 +31,4 @@ export default defineNuxtConfig({
classSuffix: ''
},
devtools: { enabled: false }
})
})

0 comments on commit 593b570

Please sign in to comment.