24 lines
447 B
JavaScript
24 lines
447 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
purge: {
|
|
enabled: true,
|
|
content: [
|
|
'./**/*.html',
|
|
'./**/*.razor'
|
|
],
|
|
},
|
|
content: ["./src/**/*.{razor,html,cshtml}"],
|
|
theme: {
|
|
extend:
|
|
{
|
|
fontFamily: {
|
|
'outfit': ['Outfit', 'sans-serif'],
|
|
'outfit-black': ['Outfit-Black', 'sans-serif'],
|
|
'poppins': ['Poppins', 'sans-serif']
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|