mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
25 lines
446 B
JavaScript
25 lines
446 B
JavaScript
module.exports = {
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
},
|
|
purge: [
|
|
'./index.html',
|
|
'./public/**/*.html',
|
|
'./src/**/*.vue',
|
|
],
|
|
prefix: '',
|
|
important: false,
|
|
separator: ':',
|
|
corePlugins: {},
|
|
plugins: [
|
|
require('@tailwindcss/custom-forms'),
|
|
],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateColumns: {
|
|
'dashboard': '150px minmax(350px, 1fr)',
|
|
}
|
|
}
|
|
}
|
|
}
|