diff --git a/postcss.config.js b/postcss.config.js index acd061e..19a6dc3 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { plugins: { - tailwindcss: "", + tailwindcss: "./tailwind.config.js", autoprefixer: {} } } diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..20926d3 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +module.exports = { + theme: { + extend: { + colors: { + inherit: 'inherit' + } + } + } +}