Skip to content

Commit

Permalink
enhance(dev): postcss configures
Browse files Browse the repository at this point in the history
  • Loading branch information
xyhp915 authored and tiensonqin committed Oct 13, 2022
1 parent 1d30189 commit a19e9ff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = (ctx) => ({
plugins: [
require('postcss-nested')({}),
require('postcss-import-ext-glob')({}),
require('postcss-import')({}),
require('tailwindcss')('tailwind.config.js'),
],
})
module.exports = {
plugins: {
'postcss-import-ext-glob': {},
'postcss-import': {},
'tailwindcss/nesting': 'postcss-nested',
tailwindcss: {}
}
}

0 comments on commit a19e9ff

Please sign in to comment.