aboutsummaryrefslogtreecommitdiff
path: root/craco.config.js
blob: f4dacbbd26c4cf44b67e1eca8c35393c89513cb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    style: {
      postcss: {
        plugins: [
          require("tailwindcss")("./tailwind.config.js"),
          require("postcss-nested"),
        ],
      },
    },
  };