TailwindCSS에서 Google 글꼴을 사용하는 방법
4273 단어 fontstailwindcssnextjs
앱 설정
Next.js 앱 만들기
npx create-next-app next-tailwind-ts-demo
대청소
바닥글이 이렇게 될 때까지 Head 태그 아래의 모든 항목을 삭제합니다.
import Head from "next/head";
export default function Home() {
return (
<div>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
</div>
);
}
앱에 Tailwind 추가
종속성 설치 -
yarn add -D tailwindcss@latest postcss@latest autoprefixer@latest # yarn
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest # npm
구성 파일 생성 -
npx tailwindcss init -p
그러면
tailwind.config.js
및 postcss.config.js
가 생성됩니다.제거할 파일 추가
tailwind.config.js
의 퍼지를 다음으로 교체하십시오. purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
globals.css 변경
@tailwind base;
@tailwind components;
@tailwind utilities;
앱 시작하기
yarn dev # yarn
npm run dev # npm
맞춤 글꼴 가져오기
Google Fonts으로 이동하여 앱에서 원하는 글꼴을 선택합니다.
이 데모에서는 Rampart One을 사용하겠습니다.
글꼴 사용
글꼴을 사용하려면 다음 단계를 따르십시오.
globasl.css
에 붙여넣기@import url("https://fonts.googleapis.com/css2?family=Rampart+One&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
fontFamily
의 새 속성을 확장하고 글꼴에 이름을 지정합니다. theme: {
extend: {
fontFamily: {
Rampart: ["Rampart One", "cursive"],
},
},
},
배열의 규칙은 Google 글꼴에 지정된 것과 동일해야 합니다.
font-Rampart
의 경우 모든 태그에 font-fontName의 className을 지정할 수 있습니다.<h1 className="font-Rampart">This is using a custom font</h1>
이제 필요한 아름다운 글꼴을 얻었습니다 🥳.
유용한 링크 -
Github repository
TailwindCSS
Google Fonts
All socials
Reference
이 문제에 관하여(TailwindCSS에서 Google 글꼴을 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/avneesh0612/how-to-use-google-fonts-in-tailwindcss-5050텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)