diff options
Diffstat (limited to 'examples/with-tailwindcss/postcss.config.js')
-rw-r--r-- | examples/with-tailwindcss/postcss.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/with-tailwindcss/postcss.config.js b/examples/with-tailwindcss/postcss.config.js index 12a703d90..7cffbeb55 100644 --- a/examples/with-tailwindcss/postcss.config.js +++ b/examples/with-tailwindcss/postcss.config.js @@ -1,6 +1,10 @@ +const path = require('path'); + module.exports = { plugins: { - tailwindcss: {}, + tailwindcss: { + config: path.join(__dirname, 'tailwind.config.js'), // update this if your path differs! + }, autoprefixer: {}, }, }; |