我正在使用 SASS 实现一个迷你 CSS 库,我想清除它,目前我正在使用 purgecss,我对此没有任何问题,但一个问题是当我从 CSS 库向我的 html 添加一个类时,该特定类不会包含在我的清除文件中,我需要重新清除我的 CSS 库 CSS 文件以包含该特定类,但我需要 purgecss 监视我的 CSS 文件并在将其添加到我的项目时添加类,并且我不需要重新清除 CSS 文件,有什么想法吗?
P粉8141609882023-09-15 00:40:21
要动态包含 CSS 库中的类,而无需手动重新清除 CSS 文件,您可以结合使用 PurgeCSS 和 PurgeCSS 的附加配置文件来监视 CSS 文件并包含特定的类。
设置方法如下:
purgecss.config.js
。该文件将指定要清除的文件以及任何其他配置选项。// purgecss.config.js module.exports = { content: ['index.html'], // Specify your HTML files here css: ['path/to/your/css/library.css'], // Path to your CSS library file defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || [], // Default extractor, modify if needed safelist: ['class-to-include'], // Add classes that should always be included here };
// webpack.config.js const PurgecssPlugin = require('purgecss-webpack-plugin'); const glob = require('glob'); const path = require('path'); module.exports = { // ... other webpack configuration options plugins: [ new PurgecssPlugin({ paths: () => glob.sync(path.resolve(__dirname, 'index.html')), // Specify your HTML files here safelist: { deep: [/^class-to-include$/] }, // Add classes that should always be included here }), ], };
确保调整上面代码片段中的路径和文件名以匹配您的项目结构。此外,如果您使用不同的构建系统或工具,则可能需要相应地调整配置。
通过此设置,每次将 CSS 库中的类添加到项目时,您无需手动重新清除 CSS 文件。相反,PurgeCSS 将监视更改并在构建过程中动态包含这些类。