TailwindCSS で構築された静的サイト用に webpack を設定しようとしています。PurgeCSS を使用して css ファイルを作成し、未使用のものを削除しようとしていますが、機能しているとは思いません。エラーなしでコンパイルされますが、css ファイルは 16kb であり、Google 灯台監査では未使用の css があると報告されています。
webpack.config.js
const path = require("path");
const glob = require("glob-all");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const PurgecssPlugin = require("purgecss-webpack-plugin");
/**
* Custom PurgeCSS Extractor
* https://github.com/FullHuman/purgecss
* https://github.com/FullHuman/purgecss-webpack-plugin
*/
class TailwindExtractor {
static extract(content) {
return content.match(/[A-z0-9-:\/]+/g);
}
}
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "styles.css"
},
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: [{ loader: "css-loader", options: { importLoaders: 1 } }, "postcss-loader"]
})
}
]
},
plugins: [
new ExtractTextPlugin("styles.css"),
new PurgecssPlugin({
paths: glob.sync([
path.join(__dirname, "src/styles.css"),
path.join(__dirname, "index.html")
]),
extractors: [
{
extractor: TailwindExtractor,
extensions: ["html", "js"]
}
]
})
]
};
パッケージ.json
{
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=webpack.config.js",
"prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.js"
},
"devDependencies": {
"ajv": "^6.5.2",
"cross-env": "^5.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"postcss": "^6.0.14",
"postcss-loader": "^2.0.8",
"purgecss-webpack-plugin": "^1.2.0",
"style-loader": "^0.19.0",
"tailwindcss": "^0.6.4",
"webpack": "^3.8.1"
},
"dependencies": {
"glob-all": "^3.1.0"
}
}
どんな助けでも大歓迎です!!