Skip to content

Commit

Permalink
feat: enable themes config by default
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi committed Apr 21, 2021
1 parent 35f2eea commit abb0b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const mainFunction = ({ addBase, addComponents, addUtilities, config }) => {
}

// inject themes
if (config('daisyui.themes') === true) {
if (config('daisyui.themes') !== false) {
console.log('\x1b[36m%s\x1b[0m', '🌼 Adding themes')
addComponents(require("./dist/themes.js"))
}
Expand Down

0 comments on commit abb0b9d

Please sign in to comment.