0

我正在使用 nextjs,并且我尝试在 postcss.config.js 中包含 @fullhuman/postcss-purgecss 插件,但是它给我带来了错误 - 在插件 [0] 中找到了无效的 postcss 插件。

这是 postcss.config.js -

const { getPlugins } = require('tachyons-build-css');
const purgecss = require('@fullhuman/postcss-purgecss');
const cssOpts = {};
module.exports = {
    plugins: [
        getPlugins(cssOpts),
        [
            purgecss,
            {
                content: ['./pages/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'],
                defaultExtractor: (content) => content.match(/[\w-/:]+(?<!:)/g) || [],
            },
        ],
    ],
};

请帮助我知道我哪里出错了。我正在使用 postcss 版本 - 7.0.14 和 @fullhuman/postcss-purgecss 版本 - 3.0.0。

4

0 回答 0