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: 9bbd93a7c9ea1d7fef570ddc53b870b26a30ea4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const themeDir = __dirname + '/../../';

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