Tailwind CSS를 추가하는 방법
Tailwind CSS를 추가하는 간단한 4단계
1. 구성 파일 생성
Create two configs for Tailwind CSS
and PostCSS
.
touch tailwind.config.js
touch postcss.config.js
const colors = require('tailwindcss/colors');
module.exports = {
theme: {
colors: {
gray: colors.coolGray,
blue: colors.lightBlue,
red: colors.rose,
pink: colors.fuchsia,
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
extend: {
spacing: {
'128': '32rem',
'144': '36rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
variants: {
extend: {
borderColor: ['focus-visible'],
opacity: ['disabled'],
},
},
};
postcss.config.js :
module.exports = () => ({
plugins: [require('tailwindcss')],
});
2. NPM 종속성 추가
npm install --save gatsby-plugin-postcss tailwindcss
3. Gatsby 설정에 Gatsby 플러그인 추가
To get PostCSS to trigger properly in the build process, you have to add the gatsby-plugin-postcss
to your Gatsby config.
gatbsy-config.js
module.exports = {
"plugins": [
// All other plugins
`gatsby-plugin-postcss`
]
})
4. TailwindCSS 가져오기
The last step is to import Tailwind CSS in the gatsby-browser.js
.
import 'tailwindcss/base.css';
import 'tailwindcss/components.css';
import 'tailwindcss/utilities.css';
🎉🎉🎉 Congratulations! 🎉🎉🎉 You have successfully added TailwindCSS to your website and can simply add Tailwind classes to your HTML.
Thanks for reading and if you have any questions , use the comment function or send me a message . If you want to know more about Gatsby , 이것들을 보세요 Gatsby Tutorials .참조(그리고 큰 감사):
TailwindCSS , Mark Shust
Reference
이 문제에 관하여(Tailwind CSS를 추가하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mariokandut/how-to-add-tailwind-css-p2l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)