website/tailwind.config.ts
2023-12-03 22:44:06 -06:00

18 lines
No EOL
473 B
TypeScript

import type {Config} from 'tailwindcss'
export default {
content: [
'./Components/Pages/**/*.{razor,cshtml}',
'./Components/Layout/**/*.{razor,cshtml}',
'./Components/Shared/**/*.{razor,cshtml}',
'../NSeguin.Dev.Web.Client/Pages/**/*.{razor,cshtml}',
'../NSeguin.Dev.Web.Client/Shared/**/*.{razor,cshtml}',
],
theme: {
extend: {},
},
plugins: [
require('tailwind-nord'),
]
} satisfies Config