Welcome to mirror list, hosted at ThFree Co, Russian Federation.

postcss.config.js « css « assets - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 400c58dd8f88ddabc1453b0184c7a8a8d02ec05f (plain)
1
2
3
4
5
6
7
8
9
const themeDir = __dirname + '/../../';

module.exports = {
  plugins: [
    require('postcss-import')({ path: [themeDir] }),
    require('tailwindcss')(themeDir + 'assets/css/tailwind.config.js'),
    require('autoprefixer')(),
  ]
}