diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-14 12:50:06 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-14 12:50:06 -0500 |
commit | 24aef8d70f7602ab241f75e38baf8df028378b7d (patch) | |
tree | f31dd64b251ea256ca32482f8ed0271a3c02d650 /craco.config.js | |
parent | 0786e9cde18448692466c61217d1d7d65f23594f (diff) |
Add tailwind css
Diffstat (limited to 'craco.config.js')
-rw-r--r-- | craco.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/craco.config.js b/craco.config.js new file mode 100644 index 0000000..f4dacbb --- /dev/null +++ b/craco.config.js @@ -0,0 +1,11 @@ +module.exports = { + style: { + postcss: { + plugins: [ + require("tailwindcss")("./tailwind.config.js"), + require("postcss-nested"), + ], + }, + }, + }; +
\ No newline at end of file |