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

postcss.config.js - github.com/Softorage/HugoTheme-VibrantShadows.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bdd71b7ffff1c4e9d9a9c43c20bf1c67c7a3a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
browserslist: [
  "defaults"
],
module.exports = {
  plugins: {
    "@fullhuman/postcss-purgecss": {
      content: ['./hugo_stats.json'],
      defaultExtractor: (content) => {
        let els = JSON.parse(content).htmlElements;
        return els.tags.concat(els.classes, els.ids);
    }
    },
    autoprefixer: {},
    cssnano: {
      preset: "default"
    }
  },
}