next.js/test/integration/css-fixtures/with-tailwindcss-and-purgecss/postcss.config.js
postcss.config.js14 lines308 B
const path = require('path')
module.exports = {
  plugins: [
    'tailwindcss',
    [
      '@fullhuman/postcss-purgecss',
      {
        content: [path.join(__dirname, './pages/**/*.{js,jsx,ts,tsx}')],
        defaultExtractor: (content) => content.match(/[A-Za-z0-9-_:/]+/g) || [],
      },
    ],
  ],
}
Quest for Codev2.0.0
/
SIGN IN