tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {},
},
plugins: [],
};
globals.css
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Pretendard';
src: url('/fonts/pretendard-regular.subset.woff2') format('woff2');
font-display: swap;
}
html {
font-family: 'Pretendard', ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol', 'Noto Color Emoji';
}
}
'Programming' 카테고리의 다른 글
[알고리즘] 프로그래머스 푸드 파이트 대회 (1) | 2023.10.23 |
---|---|
[알고리즘] 프로그래머스 예상 대진표 (0) | 2023.10.18 |
[알고리즘] 프로그래머스 구명보트 (0) | 2023.10.17 |
[알고리즘] 프로그래머스 점프와 순간 이동 (0) | 2023.10.16 |
[알고리즘] 프로그래머스 카펫 (0) | 2023.10.13 |