15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
prefix: 'tw-',
|
|
content: [
|
|
'./Pages/**/*.cshtml',
|
|
'./Areas/**/*.cshtml',
|
|
'./Views/**/*.cshtml',
|
|
'./wwwroot/**/*.js',
|
|
'./wwwroot/**/*.css'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} |