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

postcss.config.js « dev « css « assets - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2e5ef8b6780ff75dfaa80953e11335b6c1e5a1c (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')(),
  ]
}