- tailwindcss.cssPath로 패키지 tailwind.css 중복 주입 방지 - tailwind content에 composables·modules·plugins 추가 - v0.0.63 문서 반영 Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
607 B
JavaScript
29 lines
607 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./components/**/*.{vue,js}',
|
|
'./composables/**/*.{js,vue}',
|
|
'./layouts/**/*.vue',
|
|
'./modules/**/*.{js,mjs}',
|
|
'./pages/**/*.vue',
|
|
'./plugins/**/*.{js,mjs}',
|
|
'./app.vue',
|
|
'./error.vue'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
pretendard: ['Pretendard', 'ui-sans-serif', 'system-ui', 'sans-serif']
|
|
},
|
|
colors: {
|
|
ink: '#1f2328',
|
|
muted: '#6b7280',
|
|
line: '#e5e7eb',
|
|
paper: '#ffffff',
|
|
surface: '#f7f7f4'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|