felicity-lims/frontend/vite/tailwind.config.js
2021-01-15 18:54:31 +02:00

24 lines
422 B
JavaScript

module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./index.html',
'./public/**/*.html',
'./src/**/*.vue',
],
target: 'relaxed',
prefix: '',
important: false,
separator: ':',
corePlugins: {},
plugins: [],
theme: {
extend: {
gridTemplateColumns: {
'dashboard': '150px minmax(350px, 1fr)',
}
}
}
}