12 lines
173 B
JavaScript
Executable File
12 lines
173 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./views/**/*.pug',
|
|
'/views/*.pug'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|