12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
module.exports = {
|
|
content: ['./src/**/*.html', './src/**/*.js', './src/**/*.tsx'],
|
|
corePlugins: { preflight: false, container: false },
|
|
important: '#tailwind',
|
|
theme: {
|
|
extend: {
|
|
maxWidth: {
|
|
xxs: '18rem',
|
|
},
|
|
},
|
|
},
|
|
};
|