diff options
Diffstat (limited to 'postcss.config.js')
-rw-r--r-- | postcss.config.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..36017cf --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,13 @@ +import tailwindcss from 'tailwindcss' +import autoprefixer from 'autoprefixer' + +const config = { + plugins: [ + //Some plugins, like tailwindcss/nesting, need to run before Tailwind, + tailwindcss(), + //But others, like autoprefixer, need to run after, + autoprefixer, + ], +} + +export default config |