Anglar Project에서 tailwind의 활용
tailwind 가져오기
Tailwind 가져오기는 다음 단계에 따라 수행됩니다.
purge 설정
tailwind.config.js
에 purge 설정을 추가하면build 이후의 CSS 요령을 줄일 수 있습니다.module.exports = {
content: [
"./src/**/*.{html,ts}",
],
purge: [
"./src/**/*.{html,ts}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}
설정 후 구축 로그에서 다음과 같은 스타일을 확인합니다.xxxxx.css의 용량이 작아진 것을 확인하세요.remote: client: ✔ Index html generation complete.
remote: client: Initial Chunk Files | Names | Size
remote: client: main.8781df05f2f2f80ae88e.js | main | 184.73 kB
remote: client: polyfills.e9c16e5e1913541cc638.js | polyfills | 32.72 kB
remote: client: styles.4808e529956a5e43d388.css | styles | 3.04 kB
remote: client: runtime.7d2e27576b419591df3b.js | runtime | 1019 bytes
remote: client: | Initial Total | 221.49 kB
!purge의 설정이 제대로 반영되지 않을 때 스타일입니다.xxxxxx.css는 20M 정도입니다.
또한, purge의 설정은 NODE이다ENV가
production
인 경우에만 사용할 수 있습니다.모든 구축 환경에 적용되지 않으면 환경 설정을 수정하거나 구축 명령을 수정하십시오.
"scripts": {
"build": "NODE_ENV=production ng build"
}
NODE_ENV를 만지기 어려운 경우 purge 설정을 사용하여 직접 지정할 수 있습니다.module.exports = {
purge: {
enabled: true,
content: [
"./src/**/*.{html,ts}",
],
},
// ...
};
Reference
이 문제에 관하여(Anglar Project에서 tailwind의 활용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/mikakane/articles/angular_tailwind텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)