17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
// This is a minimal config.
|
|
// If you need the full config, get it from here:
|
|
// https://unpkg.com/browse/tailwindcss@latest/stubs/defaultConfig.stub.js
|
|
module.exports = {
|
|
content: [
|
|
'../templates/**/*.html',
|
|
'../../templates/**/*.html',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|