我有一个使用Angular CLI创建的Angular项目,所以我有用来配置构建的angular.json文件。
我想集成PurgeCSS,因为它似乎是减小CSS包大小的好工具。
在PurgeCSS website上,他们解释了如何与Webpack集成。我找到了说明如何添加custom webpack integration with Angular CLI的教程。
是否有人成功将PurgeCSS与Angular CLI项目集成在一起?
答案 0 :(得分:10)
此配置适用于我,并在生产构建的 126kb
输出中为我提供从 34kb
到 styles.[hash].css
的结果。
首先,安装这个:
npm install -D @angular-builders/custom-webpack purgecss-webpack-plugin
然后,在项目的根目录中创建 webpack.config.js
:
const glob = require('glob');
const PurgeCSSPlugin = require('purgecss-webpack-plugin');
module.exports = {
plugins: [
new PurgeCSSPlugin({ paths: glob.sync('./src/**/*.html', { nodir: true }) })
]
};
并按如下方式编辑您的 angular.json
配置:
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "webpack.config.js"
},
...
没有这个插件的结果:
styles.ca3c7399cc89e60cfa2d.css | styles | 128.99 kB
现在有了 purgecss-webpack-plugin
:
styles.ca3c7399cc89e60cfa2d.css | styles | 34.46 kB
这太棒了,首先当我看到这个输出时,我在浏览器中检查了我的应用程序,所有样式都已正确包含:-)。
唯一的缺点可能是,如果在角度组件中有任何内联 html,我认为这可能不起作用。
答案 1 :(得分:2)
您只需在项目根目录中运行以下命令
npm i -D postcss-import postcss-loader postcss-scss
ng add ngx-build-plus
在angular.json中,在"architect"
部分进行以下替换:
"builder": "@angular-devkit/build-angular:browser"
,"builder": "ngx-build-plus:browser"
下有"build"
,
"builder": "@angular-devkit/build-angular:dev-server"
,"builder": "ngx-build-plus:dev-server"
下有"serve"
,
"builder": "@angular-devkit/build-angular:karma"
,"builder": "ngx-build-plus:karma"
下有"test"
,
您还应该在相关部分的选项下添加"extraWebpackConfig": "webpack.config.js"
。
答案 2 :(得分:1)
我创建了这个bash脚本,以在我的Angular应用中使用PurgeCSS。它将我的“ styles.css”文件大小从63kb减小到只有3kb!希望它也对您有用。
步骤:
purgecss.sh
的新文件purgecss.sh
文件./purgecss.sh
#!/bin/bash
# run production build
ng build --prod --output-hashing none
# go to the dist/yourProjectName folder
cd ./dist/yourProjectName
# make a new directory named 'css' (you can name it anything)
mkdir css
# run PurgeCSS & make a new '.css' file inside the 'css' directory
purgecss --css ./styles.css --content ./index.html ./*.js --out ./css
# replace the 'dist/yourProjectName/styles.css' file with the 'dist/yourProjectName/css/styles.css' file
mv ./css/styles.css ./styles.css
# delete the previously created 'css' directory
rm -r css
答案 3 :(得分:1)
还有另一种方式更符合Angular CLI和Webpack配置:
您需要安装
npm install -D @angular-builders/custom-webpack postcss-scss @fullhuman/postcss-purgecss
然后创建一个webpack.config.js
配置文件:
const purgecss = require('@fullhuman/postcss-purgecss')
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
loader: 'postcss-loader',
options: {
ident: 'postcss',
syntax: 'postcss-scss',
plugins: () => [
require('postcss-import'),
require('autoprefixer'),
purgecss({
content: ['./**/*.html'],
// Example to let PurgeCss know how to exclude cdk and mat prefixes if your using Angular CDK and Angular Material
whitelistPatterns: [/^cdk-|mat-/]
})
]
}
}
]
}
};
然后更改您的angular.json
文件以使用以下新配置:
...
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "webpack.config.js"
},
...
}
},
...
当捆绑最终应用程序时,请确保仅在生产模式下运行此配置。
希望这会有所帮助。
我创建了一个帖子来详细解释-https://medium.com/@joao.a.edmundo/angular-cli-tailwindcss-purgecss-2853ef422c02