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

postcss.config.js « css « assets - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 121ed3f5f86b2e406d6557041611173a6237a689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const themeDir = __dirname + '/../../';

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