2024-04-18 19:36:29 +10:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
|
|
theme: {
|
2024-04-25 20:49:15 +10:00
|
|
|
fontFamily: {
|
|
|
|
inter: ['Inter', 'sans-serif'],
|
|
|
|
},
|
2024-04-18 19:36:29 +10:00
|
|
|
extend: {},
|
|
|
|
},
|
2024-04-25 20:44:56 +10:00
|
|
|
plugins: [],
|
2024-04-18 19:36:29 +10:00
|
|
|
};
|