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