fix: #2634 compile base colors (#2635)

* fix: compile base colors

* fix: compile base colors

dir typo

* fix: add tailwind config to base
This commit is contained in:
Goran 2023-12-20 14:34:03 -04:00 committed by GitHub
parent 5bd3aeeba3
commit ae4807b944
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,7 @@ module.exports = {
plugins: [
require("postcss-import"),
require("tailwindcss/nesting"),
require("tailwindcss")("./src/base/tailwind.config.js"),
// require("autoprefixer"),
],
}

View File

@ -0,0 +1,5 @@
module.exports = {
theme: {
colors: require("../theming"),
},
}