- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如您所知,Tailwind 是一种非常流行的 PostCSS 解决方案。我想在运行版本 11.2.0 或旧版本的 Angular 应用程序中添加 TailwindCSS。我该怎么做?
我决定发布并回答我自己的问题,因为这是我最近在 Angular 社区看到的一个非常受欢迎的问题
最佳答案
使用 npm install -D tailwindcss
安装
安装 TailwindCSS 插件(可选):
npm i @tailwindcss/typography
npm i @tailwindcss/forms
tailwind.config.js
它应该是这样的:
module.exports = {
prefix: '',
purge: {
content: [
'./src/**/*.{html,ts}',
]
},
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms'),require('@tailwindcss/typography')],
};
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
如果您使用的是 CSS 而不是 SCSS,您的文件应该如下所示:
@tailwind base;
@tailwind components;
@tailwind utilities;
转到任何组件并编写以下内容:
<button
class="py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-red-400">Hello</button>
现在运行ng serve
,你应该会看到下面的按钮
如果我们不清除,由于 TailwindCSS 为您添加的所有 CSS 类,我们的 CSS 可能会非常繁重。如果清除,所有未使用的类都将被删除。
我想在 Angular 11.2.0 中进行清除的方式如下:
A) 这是我的首选方式。将此添加到您的构建脚本 NODE_ENV=production ng build --prod
并且您的 tailwind.config.js 文件应如下所示。
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'./src/**/*.{html,ts}',
]
},
B) 在您的 tailwind.config.js 文件
中,您可以将 purge
属性内的 enabled
属性设置为 true
。这将一直运行清除,请注意这一点。
....
prefix: '',
purge: {
enabled: true,
content: [
'./src/**/*.{html,ts}',
]
},
....
然后你可以运行 ng build --prod
你会看到你的 bundle 变小了。
清除前
清除后
要了解有关使用 TailwindCSS 的 Angular(11.2.0 或更旧版本)的更多信息,请查看我的文章
https://dev.to/angular/setup-tailwindcss-in-angular-the-easy-way-1i5l
关于css - 如何在 Angular 11.2.0 或更低版本中设置 TailwindCSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66237966/
我是一名优秀的程序员,十分优秀!