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

postcss.config.js - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76aabac341dc5563ba3013287d5b257b2a0065be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module.exports = {
    plugins: {
        '@fullhuman/postcss-purgecss': {
            content: ['themes/hulga/layouts/**/*.html'],
            safelist: {
                standard: ['highlight',
                    'pre',
                    'video',
                    'img',
                    'code',
                    'content',
                    'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'p',
                    'ul', 'ol', 'li',
                    'blockquote',
                    'table',
                    'hr', 'br',
                    'back-to-top'
                ],
                deep: [/^content/, /^chroma/],
                greedy: [],
                keyframes: [],
                variables: []
            }
        },
        autoprefixer: {},
        cssnano: {
            preset: 'default'
        }
    }
};