24 lines
479 B
JavaScript
24 lines
479 B
JavaScript
import defaultTheme from 'tailwindcss/defaultTheme'
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./components/**/*.{js,vue,ts}",
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./app.vue",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
colors: {
|
|
// Add any custom colors here if needed
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|