2024-11-15 19:35:11 +11:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-11-17 00:35:28 +11:00
|
|
|
|
|
|
|
import tailwindcssforms from '@tailwindcss/forms';
|
|
|
|
|
2024-11-15 19:35:11 +11:00
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
fontFamily: {
|
|
|
|
"sans": ["Roboto Flex", "Helvetica", "Arial", "sans-serif"],
|
|
|
|
}
|
|
|
|
},
|
2024-11-17 00:35:28 +11:00
|
|
|
plugins: [
|
|
|
|
tailwindcssforms,
|
|
|
|
],
|
2024-11-15 19:35:11 +11:00
|
|
|
}
|