Skip to content

Commit

Permalink
fix: #2634 compile base colors (#2635)
Browse files Browse the repository at this point in the history
* fix: compile base colors

* fix: compile base colors

dir typo

* fix: add tailwind config to base
  • Loading branch information
gorango committed Dec 20, 2023
1 parent 5bd3aee commit ae4807b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/base/postcss.config.js
Expand Up @@ -2,6 +2,7 @@ module.exports = {
plugins: [
require("postcss-import"),
require("tailwindcss/nesting"),
require("tailwindcss")("./src/base/tailwind.config.js"),
// require("autoprefixer"),
],
}
5 changes: 5 additions & 0 deletions src/base/tailwind.config.js
@@ -0,0 +1,5 @@
module.exports = {
theme: {
colors: require("../theming"),
},
}

0 comments on commit ae4807b

Please sign in to comment.