18 lines
473 B
TypeScript
18 lines
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
|