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

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