15 lines
239 B
JavaScript
15 lines
239 B
JavaScript
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
||
|
|
||
|
module.exports = {
|
||
|
corePlugins: {
|
||
|
preflight: false,
|
||
|
opacity: false,
|
||
|
},
|
||
|
content: [
|
||
|
'./app/views/merged/view/**/*.haml',
|
||
|
'./lib/**/*.rb'
|
||
|
],
|
||
|
plugins: [
|
||
|
]
|
||
|
}
|